opentofu/terraform/test-fixtures/validate-bad-prov-conf/main.tf
2015-02-19 12:08:33 -08:00

10 lines
125 B
HCL

provider "aws" {
foo = "bar"
}
resource "aws_instance" "test" {
provisioner "shell" {
command = "foo"
}
}