mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-04-06 09:01:42 -04:00
9 lines
92 B
HCL
9 lines
92 B
HCL
module "a" {
|
|
source = "./mod1"
|
|
}
|
|
|
|
module "b" {
|
|
source = "./mod2"
|
|
ids = module.a.ids
|
|
}
|