From 194a4e88e21282e28d963d3f97df7e5cc556c610 Mon Sep 17 00:00:00 2001 From: James Bardin Date: Wed, 14 Feb 2018 15:30:18 -0500 Subject: [PATCH] add host_key and bastion_host_key to the docs --- website/docs/provisioners/connection.html.markdown | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/website/docs/provisioners/connection.html.markdown b/website/docs/provisioners/connection.html.markdown index 9a499bcabb..10954f4d1b 100644 --- a/website/docs/provisioners/connection.html.markdown +++ b/website/docs/provisioners/connection.html.markdown @@ -83,6 +83,9 @@ provisioner "file" { * `agent_identity` - The preferred identity from the ssh agent for authentication. +* `host_key` - The public key from the remote host or the signing CA, used to + verify the connection. + **Additional arguments only supported by the `winrm` connection type:** * `https` - Set to `true` to connect using HTTPS instead of HTTP. @@ -100,6 +103,9 @@ The `ssh` connection also supports the following fields to facilitate connnectio * `bastion_host` - Setting this enables the bastion Host connection. This host will be connected to first, and then the `host` connection will be made from there. +* `bastion_host_key` - The public key from the remote host or the signing CA, + used to verify the host connection. + * `bastion_port` - The port to use connect to the bastion host. Defaults to the value of the `port` field.