Files
opentf/internal/command/testdata/test/variables_reference/main.tftest.hcl
Christian Mesh 249ed42fb1 Run block variable references (#1129)
Signed-off-by: Christian Mesh <christianmesh1@gmail.com>
2024-01-17 06:57:14 -05:00

16 lines
164 B
HCL

variables {
content = "some value"
}
run "setup" {
module {
source = "./setup"
}
}
run "test" {
variables {
file_name = run.setup.file_name
}
}