Adding redis url output

This commit is contained in:
2024-01-28 09:44:02 +01:00
parent 71b5da2e14
commit bc5f7ff32b

View File

@@ -1,3 +1,6 @@
output "host" { output "host" {
value = "${var.app_slug}-redis.${var.namespace}.svc" value = "${var.app_slug}-redis.${var.namespace}.svc"
} }
output "url" {
value = "redis://${var.app_slug}-redis.${var.namespace}.svc:6379"
}