Remove provider configs from modules

This commit is contained in:
Tobias Reisinger 2024-10-10 13:15:50 +02:00
parent f8bb2d82c9
commit fa2059bb32
Signed by: serguzim
GPG key ID: 13AD60C237A28DFE
5 changed files with 92 additions and 161 deletions
modules/services

View file

@ -11,21 +11,6 @@ terraform {
}
}
provider "authentik" {
url = var.authentik_url
token = var.authentik_token
}
provider "postgresql" {
host = var.postgresql_host
port = var.postgresql_port
database = "postgres"
username = var.postgresql_username
password = var.postgresql_password
sslmode = "verify-full"
connect_timeout = 15
}
locals {
services_auth = {for key, val in var.services : key => val if val.auth}
services_database = {for key, val in var.services : key => val if val.database}