devops/infra/modules/zitadel/tenant/role-owner/variables.tf

27 lines
499 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 "org_id" {
type = string
description = "Zitadel Organization ID"
}
variable "user_id" {
type = string
description = "Zitadel User ID"
}
variable "jwt_profile_file" {
type = string
description = "Path to the jwt profile file"
}