Fix direct variable usage
This commit is contained in:
parent
bae9fe9e0f
commit
ed555418e2
5 changed files with 37 additions and 37 deletions
modules/services
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue