opentofu/terraform/testdata/validate-bad-prov-conf/main.tf
2019-06-30 10:16:15 +02:00

10 lines
121 B
HCL

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