devops/infra/modules/zitadel/project/application/user-agent/variables.tf

37 lines
667 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 "jwt_profile_file" {
type = string
description = "Path to the jwt profile file"
}
variable "org_id" {
type = string
description = "Organisation Id"
}
variable "project_id" {
type = string
description = "Project Id"
}
variable "name" {
type = string
description = "Application name"
}
variable "api_url" {
type = string
description = "Uri on which the API is available"
}