mirror of
https://github.com/luigieai/homelab.git
synced 2025-06-06 07:36:37 -03:00
24 lines
457 B
HCL
24 lines
457 B
HCL
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"
|
|
}
|