Files
domain-incoming/modules/application/variables.tf
2024-01-26 10:19:34 +01:00

29 lines
472 B
HCL

variable "component" {
type = string
}
variable "instance" {
type = string
}
variable "icon" {
type = string
}
variable "app-group" {
type = string
}
variable "protocol_provider" {
type = number
default = null
}
variable "dns_name" {
type = string
}
variable "sub-groups" {
type = list(string)
default = []
}
variable "backchannel_providers" {
type = list(number)
default = null
}