mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-05-25 10:02:16 -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.
22 lines
703 B
HCL
22 lines
703 B
HCL
# This fixture 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
|
|
|
|
variable "v" {
|
|
description = "in local caller for go-getter-modules"
|
|
default = ""
|
|
}
|
|
|
|
module "acctest_root" {
|
|
source = "github.com/hashicorp/terraform-aws-module-installer-acctest?ref=v0.0.1"
|
|
}
|
|
|
|
module "acctest_child_a" {
|
|
source = "github.com/hashicorp/terraform-aws-module-installer-acctest//modules/child_a?ref=v0.0.1"
|
|
}
|
|
|
|
module "acctest_child_b" {
|
|
source = "github.com/hashicorp/terraform-aws-module-installer-acctest//modules/child_b?ref=v0.0.1"
|
|
}
|