mirror of
https://github.com/hashicorp/terraform.git
synced 2026-02-13 07:53:22 -05:00
13 lines
220 B
HCL
13 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]
|
|
}
|