mirror of
https://github.com/hashicorp/terraform.git
synced 2026-04-24 23:57:34 -04:00
16 lines
283 B
HCL
16 lines
283 B
HCL
run "validate_test_resource" {
|
|
|
|
command = plan
|
|
|
|
assert {
|
|
condition = test_resource.foo.value == "bar"
|
|
error_message = "invalid value"
|
|
}
|
|
}
|
|
|
|
run "apply_test_resource" {
|
|
assert {
|
|
condition = test_resource.foo.value == "bar"
|
|
error_message = "invalid value"
|
|
}
|
|
}
|