From 35ce44485120c0ee0b4289bb279f2db14c47c9d1 Mon Sep 17 00:00:00 2001 From: James Bardin Date: Thu, 21 Dec 2017 17:03:16 -0500 Subject: [PATCH] add validation for the new connection field --- terraform/eval_validate.go | 1 + 1 file changed, 1 insertion(+) diff --git a/terraform/eval_validate.go b/terraform/eval_validate.go index 478aa6400..e48af84ac 100644 --- a/terraform/eval_validate.go +++ b/terraform/eval_validate.go @@ -150,6 +150,7 @@ func (n *EvalValidateProvisioner) validateConnConfig(connConfig *ResourceConfig) BastionUser interface{} `mapstructure:"bastion_user"` BastionPassword interface{} `mapstructure:"bastion_password"` BastionPrivateKey interface{} `mapstructure:"bastion_private_key"` + AgentIdentity interface{} `mapstructure:"agent_identity"` // For type=winrm only (enforced in winrm communicator) HTTPS interface{} `mapstructure:"https"`