2013-07-20 23:03:00 -04:00
|
|
|
package common
|
|
|
|
|
|
|
|
import (
|
2013-07-31 12:30:52 -04:00
|
|
|
"errors"
|
2013-07-20 23:03:00 -04:00
|
|
|
"fmt"
|
2013-08-03 19:38:21 -04:00
|
|
|
"time"
|
2015-04-05 17:58:48 -04:00
|
|
|
|
2015-06-03 17:13:52 -04:00
|
|
|
"github.com/aws/aws-sdk-go/service/ec2"
|
2018-01-19 19:18:44 -05:00
|
|
|
"github.com/hashicorp/packer/helper/multistep"
|
2013-07-20 23:03:00 -04:00
|
|
|
)
|
|
|
|
|
2016-09-07 11:15:53 -04:00
|
|
|
type ec2Describer interface {
|
|
|
|
DescribeInstances(*ec2.DescribeInstancesInput) (*ec2.DescribeInstancesOutput, error)
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
|
|
|
// modified in tests
|
|
|
|
sshHostSleepDuration = time.Second
|
|
|
|
)
|
|
|
|
|
2015-06-13 19:23:33 -04:00
|
|
|
// SSHHost returns a function that can be given to the SSH communicator
|
2013-07-20 23:04:28 -04:00
|
|
|
// for determining the SSH address based on the instance DNS name.
|
2017-11-21 21:49:38 -05:00
|
|
|
func SSHHost(e ec2Describer, sshInterface string) func(multistep.StateBag) (string, error) {
|
2013-08-31 16:00:43 -04:00
|
|
|
return func(state multistep.StateBag) (string, error) {
|
2016-09-07 11:15:53 -04:00
|
|
|
const tries = 2
|
|
|
|
// <= with current structure to check result of describing `tries` times
|
|
|
|
for j := 0; j <= tries; j++ {
|
2013-08-03 19:37:34 -04:00
|
|
|
var host string
|
2013-08-31 16:00:43 -04:00
|
|
|
i := state.Get("instance").(*ec2.Instance)
|
2017-11-21 21:49:38 -05:00
|
|
|
if sshInterface != "" {
|
|
|
|
switch sshInterface {
|
|
|
|
case "public_ip":
|
|
|
|
if i.PublicIpAddress != nil {
|
|
|
|
host = *i.PublicIpAddress
|
|
|
|
}
|
|
|
|
case "private_ip":
|
|
|
|
if i.PrivateIpAddress != nil {
|
|
|
|
host = *i.PrivateIpAddress
|
|
|
|
}
|
|
|
|
case "public_dns":
|
|
|
|
if i.PublicDnsName != nil {
|
|
|
|
host = *i.PublicDnsName
|
|
|
|
}
|
|
|
|
case "private_dns":
|
|
|
|
if i.PrivateDnsName != nil {
|
|
|
|
host = *i.PrivateDnsName
|
|
|
|
}
|
|
|
|
default:
|
2017-11-27 17:46:01 -05:00
|
|
|
panic(fmt.Sprintf("Unknown interface type: %s", sshInterface))
|
2017-11-21 21:49:38 -05:00
|
|
|
}
|
|
|
|
} else if i.VpcId != nil && *i.VpcId != "" {
|
|
|
|
if i.PublicIpAddress != nil && *i.PublicIpAddress != "" {
|
2015-08-17 20:44:01 -04:00
|
|
|
host = *i.PublicIpAddress
|
2016-09-07 11:15:53 -04:00
|
|
|
} else if i.PrivateIpAddress != nil && *i.PrivateIpAddress != "" {
|
2015-08-17 20:44:01 -04:00
|
|
|
host = *i.PrivateIpAddress
|
2013-11-25 23:45:06 -05:00
|
|
|
}
|
2015-08-17 20:44:01 -04:00
|
|
|
} else if i.PublicDnsName != nil && *i.PublicDnsName != "" {
|
|
|
|
host = *i.PublicDnsName
|
2013-08-03 19:37:34 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if host != "" {
|
2015-06-13 19:23:33 -04:00
|
|
|
return host, nil
|
2013-08-03 19:37:34 -04:00
|
|
|
}
|
|
|
|
|
2015-04-05 17:58:48 -04:00
|
|
|
r, err := e.DescribeInstances(&ec2.DescribeInstancesInput{
|
2015-08-17 20:44:01 -04:00
|
|
|
InstanceIds: []*string{i.InstanceId},
|
2015-04-05 17:58:48 -04:00
|
|
|
})
|
2013-08-03 19:37:34 -04:00
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(r.Reservations) == 0 || len(r.Reservations[0].Instances) == 0 {
|
2015-08-17 20:44:01 -04:00
|
|
|
return "", fmt.Errorf("instance not found: %s", *i.InstanceId)
|
2013-08-03 19:37:34 -04:00
|
|
|
}
|
|
|
|
|
2016-09-07 11:15:53 -04:00
|
|
|
state.Put("instance", r.Reservations[0].Instances[0])
|
|
|
|
time.Sleep(sshHostSleepDuration)
|
2013-08-03 19:21:01 -04:00
|
|
|
}
|
|
|
|
|
2017-11-21 21:49:38 -05:00
|
|
|
return "", errors.New("couldn't determine address for instance")
|
2013-07-20 23:03:00 -04:00
|
|
|
}
|
|
|
|
}
|