mirror of
https://github.com/hashicorp/terraform.git
synced 2026-04-21 14:18:43 -04:00
This is part of a general effort to move all of Terraform's non-library package surface under internal in order to reinforce that these are for internal use within Terraform only. If you were previously importing packages under this prefix into an external codebase, you could pin to an earlier release tag as an interim solution until you've make a plan to achieve the same functionality some other way.
33 lines
1 KiB
HCL
33 lines
1 KiB
HCL
# This fixture indirectly depends on a github repo at:
|
|
# https://github.com/hashicorp/terraform-aws-module-installer-acctest
|
|
# ...and expects its v0.0.1 tag to be pointing at the following commit:
|
|
# d676ab2559d4e0621d59e3c3c4cbb33958ac4608
|
|
#
|
|
# This repository is accessed indirectly via:
|
|
# https://registry.terraform.io/modules/hashicorp/module-installer-acctest/aws/0.0.1
|
|
#
|
|
# Since the tag's id is included in a downloaded archive, it is expected to
|
|
# have the following id:
|
|
# 853d03855b3290a3ca491d4c3a7684572dd42237
|
|
# (this particular assumption is encoded in the tests that use this fixture)
|
|
|
|
|
|
variable "v" {
|
|
description = "in local caller for registry-modules"
|
|
default = ""
|
|
}
|
|
|
|
module "acctest_root" {
|
|
source = "hashicorp/module-installer-acctest/aws"
|
|
version = "0.0.1"
|
|
}
|
|
|
|
module "acctest_child_a" {
|
|
source = "hashicorp/module-installer-acctest/aws//modules/child_a"
|
|
version = "0.0.1"
|
|
}
|
|
|
|
module "acctest_child_b" {
|
|
source = "hashicorp/module-installer-acctest/aws//modules/child_b"
|
|
version = "0.0.1"
|
|
}
|