communicator.Config: `mapstructure:"ssh_key_pair"` => ssh_keypair_name

This commit is contained in:
Adrien Delorme 2018-08-28 15:58:02 +02:00
parent 293c485372
commit 77a57f0354
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ type Config struct {
SSHPassword string `mapstructure:"ssh_password"`
SSHPublicKey []byte `mapstructure:"ssh_public_key"`
SSHPrivateKey []byte `mapstructure:"ssh_private_key"`
SSHKeyPair string `mapstructure:"ssh_key_pair"`
SSHKeyPair string `mapstructure:"ssh_keypair_name"`
SSHPrivateKeyFile string `mapstructure:"ssh_private_key_file"`
SSHPty bool `mapstructure:"ssh_pty"`
SSHTimeout time.Duration `mapstructure:"ssh_timeout"`