mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-02 12:17:39 -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}"
|
|
}
|