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

16 lines
153 B
Terraform
Raw Normal View History

2014-07-28 12:43:00 -05:00
# Required
variable "foo" {
}
# Optional
variable "bar" {
default = "baz"
}
# Mapping
variable "map" {
default = {
2014-08-05 00:04:48 -05:00
foo = "bar"
2014-07-28 12:43:00 -05:00
}
}