github.com/hashicorp/terraform-plugin-sdk@v1.17.2/internal/initwd/testdata/registry-modules/root.tf (about) 1 # This fixture indirectly depends on a github repo at: 2 # https://github.com/hashicorp/terraform-aws-module-installer-acctest 3 # ...and expects its v0.0.1 tag to be pointing at the following commit: 4 # d676ab2559d4e0621d59e3c3c4cbb33958ac4608 5 # 6 # This repository is accessed indirectly via: 7 # https://registry.terraform.io/modules/hashicorp/module-installer-acctest/aws/0.0.1 8 # 9 # Since the tag's id is included in a downloaded archive, it is expected to 10 # have the following id: 11 # 853d03855b3290a3ca491d4c3a7684572dd42237 12 # (this particular assumption is encoded in the tests that use this fixture) 13 14 15 variable "v" { 16 description = "in local caller for registry-modules" 17 default = "" 18 } 19 20 module "acctest_root" { 21 source = "hashicorp/module-installer-acctest/aws" 22 version = "0.0.1" 23 } 24 25 module "acctest_child_a" { 26 source = "hashicorp/module-installer-acctest/aws//modules/child_a" 27 version = "0.0.1" 28 } 29 30 module "acctest_child_b" { 31 source = "hashicorp/module-installer-acctest/aws//modules/child_b" 32 version = "0.0.1" 33 }