Skip to content

Commit e2dbceb

Browse files
authored
Add full name field to provider config (#50)
This field will be added in an upcoming release of Terraform.
1 parent 51c820d commit e2dbceb

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

config.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,9 @@ type ProviderConfig struct {
4848
// The name of the provider, ie: "aws".
4949
Name string `json:"name,omitempty"`
5050

51+
// The fully-specified name of the provider, ie: "registry.terraform.io/hashicorp/aws".
52+
FullName string `json:"full_name,omitempty"`
53+
5154
// The alias of the provider, ie: "us-east-1".
5255
Alias string `json:"alias,omitempty"`
5356

0 commit comments

Comments
 (0)