terraform/internal/command/testdata/test/parallel-errors/main.tftest.hcl

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
334 B
HCL
Raw Permalink Normal View History

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"
}
}