[POSTGRES] -, decapitalise

This commit is contained in:
Kat Inskip 2023-05-01 12:20:28 -07:00
parent dd40165ecb
commit 51256e8bbb
Signed by: kat
GPG key ID: 465E64DECEA8CF0F

View file

@ -18,7 +18,7 @@ resource "kubernetes_secret" "postgres_auth_secret" {
namespace = "postgresql" namespace = "postgresql"
} }
data = { data = {
postgresPassword = var.postgres_password postgres-password = var.postgres_password
} }
type = "Opaque" type = "Opaque"
} }