Files
kydah-modules/saml/variables.tf

38 lines
613 B
HCL

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