mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-15 16:00:26 -04:00
14 lines
257 B
HCL
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" {}
|
|
}
|