mirror of
https://github.com/opentffoundation/opentf.git
synced 2025-12-21 10:47:34 -05:00
19 lines
211 B
HCL
19 lines
211 B
HCL
|
|
variables {
|
|
first = "value"
|
|
second = "value"
|
|
}
|
|
|
|
run "some_run_block" {
|
|
command=plan
|
|
|
|
plan_options={
|
|
refresh=false
|
|
}
|
|
|
|
assert {
|
|
condition = var.input == 12
|
|
error_message = "something"
|
|
}
|
|
}
|