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