mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-25 18:45:20 -06:00
9 lines
118 B
Terraform
9 lines
118 B
Terraform
|
module "a_module" {
|
||
|
source = "./a"
|
||
|
}
|
||
|
|
||
|
module "b_module" {
|
||
|
source = "./b"
|
||
|
a_id = "${module.a_module.a_output}"
|
||
|
}
|