From 1d219cecaf018074fe258088effb8e4a4ddd2ea6 Mon Sep 17 00:00:00 2001 From: Adrien Delorme Date: Tue, 28 Aug 2018 17:49:10 +0200 Subject: [PATCH] add SSHTemporaryKeyPairName to communicator.Config --- helper/communicator/config.go | 1 + 1 file changed, 1 insertion(+) diff --git a/helper/communicator/config.go b/helper/communicator/config.go index 45f5daa05..9846aff10 100644 --- a/helper/communicator/config.go +++ b/helper/communicator/config.go @@ -30,6 +30,7 @@ type Config struct { SSHPublicKey []byte `mapstructure:"ssh_public_key"` SSHPrivateKey []byte `mapstructure:"ssh_private_key"` SSHKeyPairName string `mapstructure:"ssh_keypair_name"` + SSHTemporaryKeyPairName string `mapstructure:"temporary_key_pair_name"` SSHPrivateKeyFile string `mapstructure:"ssh_private_key_file"` SSHPty bool `mapstructure:"ssh_pty"` SSHTimeout time.Duration `mapstructure:"ssh_timeout"`