mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-28 17:34:24 -06:00
9 lines
107 B
Terraform
9 lines
107 B
Terraform
|
module "foo" {
|
||
|
source = "./foo"
|
||
|
}
|
||
|
|
||
|
module "bar" {
|
||
|
source = "./bar"
|
||
|
in = "${module.foo.data}"
|
||
|
}
|