terraform/internal/configs/testdata/invalid-modules/tests-invalid-run-blocks/main.tf
Liam Cervante 3a75362cce
terraform test: run block names should be valid HCL identifiers (#34469)
* terraform test: run block names should be valid HCL identifiers

* fix test
2024-01-03 13:02:59 +01:00

8 lines
102 B
HCL

resource "aws_instance" "web" {
ami = "ami-1234"
security_groups = [
"foo",
"bar",
]
}