2023-08-09 21:37:50 -03:00
|
|
|
variable "cloudflare_caddy_api_token" {
|
|
|
|
type = string
|
|
|
|
description = "API key to edit TLS in DNS zones in Cloudflare used by Caddy"
|
2023-12-04 22:29:52 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
variable "postgree_user" {
|
|
|
|
type = string
|
|
|
|
description = "Postgree username"
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "postgree_password" {
|
|
|
|
type = string
|
|
|
|
description = "Poastgree password"
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "pgadmin_user" {
|
|
|
|
type = string
|
|
|
|
description = "PgAdmin username"
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "pgadmin_password" {
|
|
|
|
type = string
|
|
|
|
description = "PgAdmin password"
|
|
|
|
}
|
2023-12-06 21:06:36 -03:00
|
|
|
|
|
|
|
variable "kc_user" {
|
|
|
|
type = string
|
|
|
|
description = "Keycloak default user"
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "kc_password" {
|
|
|
|
type = string
|
|
|
|
description = "Keycloak default password"
|
|
|
|
}
|