opentofu/terraform/test-fixtures/validate-bad-prov-conf/main.tf

10 lines
125 B
Terraform
Raw Normal View History

2014-07-28 12:43:00 -05:00
provider "aws" {
foo = "bar"
}
resource "aws_instance" "test" {
provisioner "shell" {
command = "foo"
}
2014-07-28 12:43:00 -05:00
}