infra/main: properly format database object as kubernetes Secret

This commit is contained in:
ryan-distrust.co 2023-05-15 00:06:32 -04:00
parent c06e656e62
commit f5008b3294
Signed by untrusted user who does not match committer: ryan
GPG Key ID: 8E401478A3FBEF72
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ output "database_users" {
name = db_user.name,
dbname = db_user.name,
host = local.database_host,
port = local.database_port,
port = tostring(local.database_port),
password = db_user.password,
# Forgejo, they call it "host"
address = join(":", [local.database_host, local.database_port]),