33 lines
638 B
HCL
33 lines
638 B
HCL
variable "domain" {
|
|
type = string
|
|
description = "Domain for the zitadel instance"
|
|
default = "localhost"
|
|
}
|
|
|
|
variable "secret" {
|
|
type = string
|
|
description = "Secret holding the JWT Profile JSON"
|
|
}
|
|
|
|
variable "namespace" {
|
|
type = string
|
|
description = "Namespace holding the secret"
|
|
}
|
|
|
|
variable "wait_on" {
|
|
type = any
|
|
description = "Resources to wait on"
|
|
default = true
|
|
}
|
|
|
|
variable "k8s_config_yaml" {
|
|
description = "Content of k8s config yaml file"
|
|
type = string
|
|
}
|
|
|
|
variable "name" {
|
|
type = string
|
|
description = "Name of the tenant"
|
|
default = "fourlights"
|
|
}
|