mirror of
https://github.com/luigieai/homelab.git
synced 2025-06-04 23:16:35 -03:00
49 lines
954 B
HCL
49 lines
954 B
HCL
variable "cloudflare_caddy_api_token" {
|
|
type = string
|
|
description = "API key to edit TLS in DNS zones in Cloudflare used by Caddy"
|
|
}
|
|
|
|
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"
|
|
}
|
|
|
|
variable "kc_user" {
|
|
type = string
|
|
description = "Keycloak default user"
|
|
}
|
|
|
|
variable "kc_password" {
|
|
type = string
|
|
description = "Keycloak default password"
|
|
}
|
|
|
|
variable "discord_webhook" {
|
|
type = string
|
|
description = "Discord webhook"
|
|
}
|
|
|
|
variable "twitch_username" {
|
|
type = string
|
|
description = "Twitch username"
|
|
}
|
|
|
|
variable "twitch_password" {
|
|
type = string
|
|
description = "Twitch password"
|
|
}
|