opentofu/terraform/test-fixtures/vars-basic/main.tf
2016-08-17 11:28:58 -07:00

15 lines
162 B
HCL

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