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"
|
|
|
|
}
|
2024-05-03 20:41:43 -03:00
|
|
|
|
|
|
|
variable "discord_webhook" {
|
2024-10-24 03:03:03 -03:00
|
|
|
type = string
|
2024-05-03 20:41:43 -03:00
|
|
|
description = "Discord webhook"
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "twitch_username" {
|
2024-10-24 03:03:03 -03:00
|
|
|
type = string
|
2024-05-03 20:41:43 -03:00
|
|
|
description = "Twitch username"
|
|
|
|
}
|
|
|
|
|
|
|
|
variable "twitch_password" {
|
2024-10-24 03:03:03 -03:00
|
|
|
type = string
|
|
|
|
description = "Twitch password"
|
2024-10-29 02:28:35 -03:00
|
|
|
}
|