23 lines
440 B
HCL
23 lines
440 B
HCL
variable "domain" {
|
|
type = string
|
|
description = "Domain for the zitadel instance"
|
|
default = "localhost"
|
|
}
|
|
|
|
variable "wait_on" {
|
|
type = any
|
|
description = "Resources to wait on"
|
|
default = true
|
|
}
|
|
|
|
variable "name" {
|
|
type = string
|
|
description = "Name of the tenant"
|
|
default = "fourlights"
|
|
}
|
|
|
|
variable "jwt_profile_file" {
|
|
type = string
|
|
description = "Path to the jwt profile file"
|
|
}
|