Files
opentf/internal/tofu/testdata/vars-basic/main.tf
2023-09-20 15:16:53 +03:00

15 lines
169 B
HCL

variable "a" {
default = "foo"
type = string
}
variable "b" {
default = []
type = list(string)
}
variable "c" {
default = {}
type = map(string)
}