terraform/internal/command/testdata/test/parallel-errors/main.tftest.hcl
Liam Cervante 063b7cf62b
terraform test: check specific dependencies before skipping run blocks (#37204)
* terraform test: check specific dependencies before skipping run blocks

* fix data race

* complete comment
2025-06-05 10:44:04 +00:00

32 lines
334 B
HCL

test {
parallel = true
}
run "one" {
state_key = "one"
variables {
input = "one"
}
assert {
condition = output.value
error_message = "something"
}
}
run "two" {
state_key = "two"
variables {
input = run.one.value
}
}
run "three" {
state_key = "three"
variables {
input = "three"
}
}