mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-01-01 10:01:03 -05:00
14 lines
220 B
HCL
14 lines
220 B
HCL
module "module_test_foo" {
|
|
source = "./foo"
|
|
test_var = "baz"
|
|
}
|
|
|
|
module "module_test_bar" {
|
|
source = "./bar"
|
|
}
|
|
|
|
output "test" {
|
|
value = module.module_test_foo.test
|
|
depends_on = [module.module_test_foo]
|
|
}
|