terraform-provider-google/vendor/github.com/hashicorp/terraform/config/module/module.go

10 lines
177 B
Go
Raw Normal View History

2017-06-06 15:58:56 +00:00
package module
// Module represents the metadata for a single module.
type Module struct {
Name string
Source string
Version string
Providers map[string]string
2017-06-06 15:58:56 +00:00
}