From 4fedf6c6f45a17af02c144303db2ce621a15de41 Mon Sep 17 00:00:00 2001 From: James Bardin Date: Wed, 25 Jul 2018 17:50:01 -0400 Subject: [PATCH] removing connection data from the providers Very few resources need connection info, and rather than relying on providers to set default for some resources, we are going to require that connection blocks be explicitly set in the configuration. --- providers/provider.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/providers/provider.go b/providers/provider.go index 91eff087c6..87d4392f39 100644 --- a/providers/provider.go +++ b/providers/provider.go @@ -243,10 +243,6 @@ type ApplyResourceChangeResponse struct { // known state of the resource, if it exists. NewState cty.Value - // Connection is used to return any information provisioners might require - // to cty.Value - Connection cty.Value - // Private is an opaque blob that will be stored in state along with the // resource. It is intended only for interpretation by the provider itself. Private []byte