19 lines
462 B
Terraform
19 lines
462 B
Terraform
|
terraform {
|
||
|
required_providers {
|
||
|
authentik = {
|
||
|
source = "goauthentik/authentik"
|
||
|
version = "~> 2024.8.0"
|
||
|
}
|
||
|
postgresql = {
|
||
|
source = "cyrilgdn/postgresql"
|
||
|
version = "~> 1.23.0"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
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}
|
||
|
services_s3 = {for key, val in var.services : key => val if val.s3}
|
||
|
}
|