Fix direct variable usage

This commit is contained in:
Tobias Reisinger 2024-09-30 01:26:42 +02:00
parent bae9fe9e0f
commit ed555418e2
Signed by: serguzim
GPG key ID: 13AD60C237A28DFE
5 changed files with 37 additions and 37 deletions
modules/services

View file

@ -12,16 +12,16 @@ terraform {
}
provider "authentik" {
url = "${var.authentik_url}"
token = "${var.authentik_token}"
url = var.authentik_url
token = var.authentik_token
}
provider "postgresql" {
host = "${var.postgresql_host}"
port = "${var.postgresql_port}"
host = var.postgresql_host
port = var.postgresql_port
database = "postgres"
username = "${var.postgresql_username}"
password = "${var.postgresql_password}"
username = var.postgresql_username
password = var.postgresql_password
sslmode = "verify-full"
connect_timeout = 15
}