mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-02-18 04:01:08 -05:00
22 lines
288 B
HCL
22 lines
288 B
HCL
variables {
|
|
managed_id = "B853C121"
|
|
}
|
|
|
|
run "setup" {
|
|
module {
|
|
source = "./setup"
|
|
}
|
|
|
|
variables {
|
|
value = "Hello, world!"
|
|
id = "B853C121"
|
|
}
|
|
}
|
|
|
|
run "test" {
|
|
assert {
|
|
condition = test_resource.created.value == "Hello, world!"
|
|
error_message = "bad value"
|
|
}
|
|
}
|