From baaefcd06c0c76df92aacb9d3635e2bd472129c9 Mon Sep 17 00:00:00 2001 From: Alisdair McDiarmid Date: Tue, 8 Feb 2022 10:11:16 -0500 Subject: [PATCH] Add full name field to provider config 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"`