mirror of
https://github.com/opentffoundation/opentf.git
synced 2025-12-21 10:47:34 -05:00
16 lines
164 B
HCL
16 lines
164 B
HCL
variables {
|
|
content = "some value"
|
|
}
|
|
|
|
run "setup" {
|
|
module {
|
|
source = "./setup"
|
|
}
|
|
}
|
|
|
|
run "test" {
|
|
variables {
|
|
file_name = run.setup.file_name
|
|
}
|
|
}
|