]> git.immae.eu Git - github/fretlink/terraform-provider-statuscake.git/blobdiff - vendor/github.com/hashicorp/terraform/terraform/eval_validate.go
deps: github.com/hashicorp/terraform@sdk-v0.11-with-go-modules
[github/fretlink/terraform-provider-statuscake.git] / vendor / github.com / hashicorp / terraform / terraform / eval_validate.go
index 478aa64005fbd60cbda446934693702573dc4247..3e5a84ce65e670ddd1ccfbb070b86593c4a41523 100644 (file)
@@ -144,16 +144,20 @@ func (n *EvalValidateProvisioner) validateConnConfig(connConfig *ResourceConfig)
 
                // For type=ssh only (enforced in ssh communicator)
                PrivateKey        interface{} `mapstructure:"private_key"`
+               HostKey           interface{} `mapstructure:"host_key"`
                Agent             interface{} `mapstructure:"agent"`
                BastionHost       interface{} `mapstructure:"bastion_host"`
+               BastionHostKey    interface{} `mapstructure:"bastion_host_key"`
                BastionPort       interface{} `mapstructure:"bastion_port"`
                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"`
                Insecure interface{} `mapstructure:"insecure"`
+               NTLM     interface{} `mapstructure:"use_ntlm"`
                CACert   interface{} `mapstructure:"cacert"`
        }