mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-09 15:43:53 -06:00
9 lines
102 B
Terraform
9 lines
102 B
Terraform
|
module "A" {
|
||
|
source = "./A"
|
||
|
}
|
||
|
|
||
|
module "B" {
|
||
|
source = "./B"
|
||
|
input = "${module.A.value}"
|
||
|
}
|