github.com/terramate-io/tf@v0.0.0-20230830114523-fce866b4dfcd/terraform/testdata/apply-module-replace-cycle/main.tf (about) 1 module "a" { 2 source = "./mod1" 3 } 4 5 module "b" { 6 source = "./mod2" 7 ids = module.a.ids 8 }