builder/scaleway: support ssh agent authentication

This commit is contained in:
Loïc Carr 2018-01-06 14:56:46 +01:00 committed by Matthew Hooker
parent 1f7c32db98
commit 22b12432db
No known key found for this signature in database
GPG Key ID: 7B5F933D9CE8C6A1
1 changed files with 20 additions and 2 deletions

View File

@ -2,10 +2,13 @@ package scaleway
import (
"fmt"
"net"
"os"
packerssh "github.com/hashicorp/packer/communicator/ssh"
"github.com/mitchellh/multistep"
"golang.org/x/crypto/ssh"
"golang.org/x/crypto/ssh/agent"
)
func commHost(state multistep.StateBag) (string, error) {
@ -19,12 +22,27 @@ func sshConfig(state multistep.StateBag) (*ssh.ClientConfig, error) {
var auth []ssh.AuthMethod
if config.Comm.SSHPassword != "" {
if config.Comm.SSHAgentAuth {
authSock := os.Getenv("SSH_AUTH_SOCK")
if authSock == "" {
return nil, fmt.Errorf("SSH_AUTH_SOCK is not set")
}
sshAgent, err := net.Dial("unix", authSock)
if err != nil {
return nil, fmt.Errorf("Cannot connect to SSH Agent socket %q: %s", authSock, err)
}
auth = []ssh.AuthMethod{
ssh.PublicKeysCallback(agent.NewClient(sshAgent).Signers),
}
}
if config.Comm.SSHPassword != "" {
auth = append(auth,
ssh.Password(config.Comm.SSHPassword),
ssh.KeyboardInteractive(
packerssh.PasswordKeyboardInteractive(config.Comm.SSHPassword)),
}
)
}
if config.Comm.SSHPrivateKey != "" {