opentofu/terraform/test-fixtures/smc-uservars/main.tf
Mitchell Hashimoto 038cca291e config: HCL loader
2014-08-11 09:58:53 -07:00

16 lines
153 B
HCL

# Required
variable "foo" {
}
# Optional
variable "bar" {
default = "baz"
}
# Mapping
variable "map" {
default = {
foo = "bar"
}
}