45 lines
705 B
HCL
45 lines
705 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 "user_name" {
|
|
type = string
|
|
}
|
|
|
|
variable "name" {
|
|
type = string
|
|
}
|
|
|
|
variable "description" {
|
|
type = string
|
|
default = null
|
|
}
|
|
|
|
variable "with_secret" {
|
|
type = bool
|
|
default = false
|
|
}
|
|
|
|
variable "access_token_type" {
|
|
type = string
|
|
default = "ACCESS_TOKEN_TYPE_JWT"
|
|
}
|