Files
kydah-modules/saml/variables.tf
2024-09-22 21:29:45 +02:00

29 lines
389 B
HCL

variable "component" {
type = string
}
variable "instance" {
type = string
}
variable "namespace" {
type = string
}
variable "domain" {
type = string
}
variable "issuer" {
type = string
}
variable "dns_names" {
type = list(string)
}
variable "acs_path" {
type = string
}
variable "binding" {
type = string
default = "post"
}
variable "labels" {
type = map(string)
}