From e2dbceb24a73e148ec6a9a19185069b83c1c8e86 Mon Sep 17 00:00:00 2001 From: Alisdair McDiarmid Date: Mon, 14 Mar 2022 04:03:34 -0400 Subject: [PATCH] Add full name field to provider config (#50) This field will be added in an upcoming release of Terraform. --- config.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/config.go b/config.go index e093cfa..5ebe4bc 100644 --- a/config.go +++ b/config.go @@ -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"`