mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-22 10:31:22 -04:00
33 lines
334 B
HCL
33 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"
|
||
|
|
}
|
||
|
|
}
|