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

9 lines
124 B
HCL

resource "aws_instance" "foo" {
connection {
user = "test"
}
provisioner "shell" {
test_string = "test"
}
}