mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-04 13:17:43 -06:00
11 lines
415 B
HCL
11 lines
415 B
HCL
resource "null_resource" "foo" {
|
|
# This construct trips up the HCL2 parser because it looks like a nested block
|
|
# but has quoted keys like a map. The upgrade tool would add an equals sign
|
|
# here to turn this into a map attribute, but "terraform init" must first
|
|
# be able to install the null provider so the upgrade tool can know that
|
|
# "triggers" is a map attribute.
|
|
triggers {
|
|
"foo" = "bar"
|
|
}
|
|
}
|