Files
opentf/command/test-fixtures/parallelism/main.tf
2015-09-29 22:41:26 -07:00

14 lines
257 B
HCL

resource "test_instance" "foo1" {
ami = "bar"
// shell has been configured to sleep for one second
provisioner "shell" {}
}
resource "test_instance" "foo2" {
ami = "bar"
// shell has been configured to sleep for one second
provisioner "shell" {}
}