You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
terraform/internal/command/testdata/test/cleanup/main.tftest.hcl

26 lines
393 B

run "test" {
variables {
id = "test"
}
}
run "test_two" {
skip_cleanup = true # This will leave behind the state
variables {
id = "test_two"
}
}
run "test_three" {
state_key = "state_three"
variables {
id = "test_three"
destroy_fail = true // This will fail to destroy and leave behind the state
}
}
run "test_four" {
variables {
id = "test_four"
}
}