mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-30 10:47:14 -06:00
17 lines
286 B
HCL
17 lines
286 B
HCL
run "validate_test_resource" {
|
|
|
|
command = plan
|
|
|
|
assert {
|
|
condition = test_resource.foo.value == "bar"
|
|
error_message = "invalid value"
|
|
}
|
|
}
|
|
|
|
run "validate_test_resource" {
|
|
assert {
|
|
condition = test_resource.foo.value == "bar"
|
|
error_message = "invalid value"
|
|
}
|
|
}
|