mirror of
https://github.com/opentffoundation/opentf.git
synced 2025-12-22 03:07:51 -05:00
14 lines
204 B
HCL
14 lines
204 B
HCL
variables {
|
|
value = "Hello, world!"
|
|
}
|
|
|
|
run "load_module" {
|
|
module {
|
|
source = "./setup"
|
|
}
|
|
|
|
assert {
|
|
condition = output.value == "Hello, world!"
|
|
error_message = "invalid value"
|
|
}
|
|
} |