opentofu/terraform/test-fixtures/smc-uservars/main.tf

16 lines
171 B
Terraform
Raw Normal View History

# Required
variable "foo" {
}
# Optional
variable "bar" {
default = "baz"
}
2014-07-22 10:27:16 -05:00
# Mapping
variable "map" {
default = {
"foo" = "bar";
}
}