From 40c36b48dc4e784ddece7e74dd15b7b247e78cf2 Mon Sep 17 00:00:00 2001 From: James Bardin Date: Tue, 17 Oct 2017 18:36:51 -0400 Subject: [PATCH] missing test-fixture files --- .../exists-in-registry/identifier/provider/main.tf | 3 +++ config/module/test-fixtures/discover-registry-local/main.tf | 3 +++ config/module/test-fixtures/registry-subdir/main.tf | 4 ++++ 3 files changed, 10 insertions(+) create mode 100644 config/module/test-fixtures/discover-registry-local/exists-in-registry/identifier/provider/main.tf create mode 100644 config/module/test-fixtures/discover-registry-local/main.tf create mode 100644 config/module/test-fixtures/registry-subdir/main.tf diff --git a/config/module/test-fixtures/discover-registry-local/exists-in-registry/identifier/provider/main.tf b/config/module/test-fixtures/discover-registry-local/exists-in-registry/identifier/provider/main.tf new file mode 100644 index 0000000000..907b0c7e4c --- /dev/null +++ b/config/module/test-fixtures/discover-registry-local/exists-in-registry/identifier/provider/main.tf @@ -0,0 +1,3 @@ +output "local" { + value = "test" +} diff --git a/config/module/test-fixtures/discover-registry-local/main.tf b/config/module/test-fixtures/discover-registry-local/main.tf new file mode 100644 index 0000000000..93bd57972b --- /dev/null +++ b/config/module/test-fixtures/discover-registry-local/main.tf @@ -0,0 +1,3 @@ +module "provider" { + source = "exists-in-registry/identifier/provider" +} diff --git a/config/module/test-fixtures/registry-subdir/main.tf b/config/module/test-fixtures/registry-subdir/main.tf new file mode 100644 index 0000000000..2f008a73b7 --- /dev/null +++ b/config/module/test-fixtures/registry-subdir/main.tf @@ -0,0 +1,4 @@ +module "foo" { + // the mock test registry will redirect this to the local tar file + source = "registry/local/sub//baz" +}