mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-12 00:16:18 -06:00
9 lines
112 B
Terraform
9 lines
112 B
Terraform
|
module "foo" {
|
||
|
source = "./foo"
|
||
|
}
|
||
|
|
||
|
module "bar" {
|
||
|
source = "./bar"
|
||
|
value = "${module.foo.output}"
|
||
|
}
|