mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-18 20:52:58 -06:00
9 lines
102 B
HCL
9 lines
102 B
HCL
module "A" {
|
|
source = "./A"
|
|
}
|
|
|
|
module "B" {
|
|
source = "./B"
|
|
input = "${module.A.value}"
|
|
}
|