mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-23 19:04:57 -04:00
21 lines
332 B
HCL
21 lines
332 B
HCL
variables {
|
|
input = "bar"
|
|
}
|
|
|
|
run "validate_test_resource" {
|
|
assert {
|
|
condition = test_resource.foo.value == "bar"
|
|
error_message = "invalid value"
|
|
}
|
|
}
|
|
|
|
run "apply_test_resource" {
|
|
variables {
|
|
input = "zap"
|
|
}
|
|
|
|
assert {
|
|
condition = test_resource.foo.value == "zap"
|
|
error_message = "invalid value"
|
|
}
|
|
}
|