blob: 3d6781202c8eea3c5f19004e46d1e17bce66d7d5 [file] [log] [blame]
variable "a" {
type = string
}
variable "b" {
type = list
}
variable "c" {
type = map
}
variable "d" {
type = set
}
variable "e" {
type = "string"
}
variable "f" {
type = "list"
}
variable "g" {
type = "map"
}
variable "h" {
type = object({})
}
variable "i" {
type = object({
foo = string
})
}
variable "j" {
type = tuple([])
}
variable "k" {
type = tuple([number])
}
variable "l" {
type = list(string)
}
variable "m" {
type = list(
object({
foo = bool
})
)
}