]> git.immae.eu Git - github/fretlink/terraform-provider-statuscake.git/blob - vendor/github.com/hashicorp/terraform-config-inspect/tfconfig/provider_ref.go
Upgrade to 0.12
[github/fretlink/terraform-provider-statuscake.git] / vendor / github.com / hashicorp / terraform-config-inspect / tfconfig / provider_ref.go
1 package tfconfig
2
3 // ProviderRef is a reference to a provider configuration within a module.
4 // It represents the contents of a "provider" argument in a resource, or
5 // a value in the "providers" map for a module call.
6 type ProviderRef struct {
7 Name string `json:"name"`
8 Alias string `json:"alias,omitempty"` // Empty if the default provider configuration is referenced
9 }