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/deferred_changes/update.tftest.hcl

23 lines
361 B

run "create" {
variables {
defer = false
}
assert {
condition = !test_resource.resource.defer
error_message = "deferred resource attribute should be false"
}
}
run "update" {
variables {
defer = true
}
assert {
condition = test_resource.resource.defer
error_message = "deferred resource attribute should be true"
}
}