homelab/terraform-home/modules/keycloak/variables.tf

25 lines
457 B
Terraform
Raw Normal View History

2023-12-06 21:06:36 -03:00
variable "postgree_user" {
type = string
description = "Postgree username"
}
variable "postgree_password" {
type = string
description = "Poastgree password"
}
variable "postgree_endpoint" {
type = string
description = "Postgree endpoint"
}
variable "KC_USER" {
type = string
description = "Keycloak default user"
}
variable "KC_PASSWORD" {
type = string
description = "Keycloak default password"
}