aboutsummaryrefslogtreecommitdiffhomepage
path: root/vendor/github.com/hashicorp/terraform/internal/initwd/getter.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/hashicorp/terraform/internal/initwd/getter.go')
-rw-r--r--vendor/github.com/hashicorp/terraform/internal/initwd/getter.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/vendor/github.com/hashicorp/terraform/internal/initwd/getter.go b/vendor/github.com/hashicorp/terraform/internal/initwd/getter.go
index 50e2572..2f306be 100644
--- a/vendor/github.com/hashicorp/terraform/internal/initwd/getter.go
+++ b/vendor/github.com/hashicorp/terraform/internal/initwd/getter.go
@@ -22,6 +22,7 @@ import (
22var goGetterDetectors = []getter.Detector{ 22var goGetterDetectors = []getter.Detector{
23 new(getter.GitHubDetector), 23 new(getter.GitHubDetector),
24 new(getter.BitBucketDetector), 24 new(getter.BitBucketDetector),
25 new(getter.GCSDetector),
25 new(getter.S3Detector), 26 new(getter.S3Detector),
26 new(getter.FileDetector), 27 new(getter.FileDetector),
27} 28}
@@ -46,6 +47,7 @@ var goGetterDecompressors = map[string]getter.Decompressor{
46 47
47var goGetterGetters = map[string]getter.Getter{ 48var goGetterGetters = map[string]getter.Getter{
48 "file": new(getter.FileGetter), 49 "file": new(getter.FileGetter),
50 "gcs": new(getter.GCSGetter),
49 "git": new(getter.GitGetter), 51 "git": new(getter.GitGetter),
50 "hg": new(getter.HgGetter), 52 "hg": new(getter.HgGetter),
51 "s3": new(getter.S3Getter), 53 "s3": new(getter.S3Getter),