9 lines
140 B
Terraform
9 lines
140 B
Terraform
|
resource "test_instance" "foo" {
|
||
|
provisioner "test" {
|
||
|
commands = ["a", "b", "c"]
|
||
|
|
||
|
when = create
|
||
|
on_failure = fail
|
||
|
}
|
||
|
}
|