Files
opentf/terraform/testdata/vars-basic/main.tf
2019-06-30 10:16:15 +02:00

15 lines
162 B
HCL

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