mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-28 01:41:48 -06:00
9 lines
118 B
HCL
9 lines
118 B
HCL
module "a_module" {
|
|
source = "./a"
|
|
}
|
|
|
|
module "b_module" {
|
|
source = "./b"
|
|
a_id = "${module.a_module.a_output}"
|
|
}
|