33 lines
444 B
HCL
33 lines
444 B
HCL
variable "authentik_url" {
|
|
}
|
|
|
|
variable "authentik_token" {
|
|
sensitive = true
|
|
}
|
|
|
|
|
|
variable "postgresql_host" {
|
|
}
|
|
|
|
variable "postgresql_port" {
|
|
}
|
|
|
|
variable "postgresql_username" {
|
|
sensitive = true
|
|
}
|
|
|
|
variable "postgresql_password" {
|
|
sensitive = true
|
|
}
|
|
|
|
|
|
variable "services" {
|
|
type = map(object({
|
|
name = string
|
|
subdomain = string
|
|
auth = bool
|
|
auth_redirects = optional(list(string))
|
|
s3 = bool
|
|
database = bool
|
|
}))
|
|
}
|