aboutsummaryrefslogtreecommitdiffhomepage
path: root/vendor/github.com/hashicorp/terraform/config/module/module.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/hashicorp/terraform/config/module/module.go')
-rw-r--r--vendor/github.com/hashicorp/terraform/config/module/module.go6
1 files changed, 4 insertions, 2 deletions
diff --git a/vendor/github.com/hashicorp/terraform/config/module/module.go b/vendor/github.com/hashicorp/terraform/config/module/module.go
index f8649f6..7dc8fcc 100644
--- a/vendor/github.com/hashicorp/terraform/config/module/module.go
+++ b/vendor/github.com/hashicorp/terraform/config/module/module.go
@@ -2,6 +2,8 @@ package module
2 2
3// Module represents the metadata for a single module. 3// Module represents the metadata for a single module.
4type Module struct { 4type Module struct {
5 Name string 5 Name string
6 Source string 6 Source string
7 Version string
8 Providers map[string]string
7} 9}