Skip to content

Commit

Permalink
Add full name field to provider config (#50)
Browse files Browse the repository at this point in the history
This field will be added in an upcoming release of Terraform.
  • Loading branch information
alisdair committed Mar 14, 2022
1 parent 51c820d commit e2dbceb
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions config.go
Expand Up @@ -48,6 +48,9 @@ type ProviderConfig struct {
// The name of the provider, ie: "aws".
Name string `json:"name,omitempty"`

// The fully-specified name of the provider, ie: "registry.terraform.io/hashicorp/aws".
FullName string `json:"full_name,omitempty"`

// The alias of the provider, ie: "us-east-1".
Alias string `json:"alias,omitempty"`

Expand Down

0 comments on commit e2dbceb

Please sign in to comment.