2013-07-25 01:19:04 -04:00
|
|
|
package instance
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2014-06-04 17:58:11 -04:00
|
|
|
|
2015-06-26 11:43:13 -04:00
|
|
|
"github.com/aws/aws-sdk-go/aws"
|
2015-06-03 17:13:52 -04:00
|
|
|
"github.com/aws/aws-sdk-go/service/ec2"
|
2013-07-25 01:19:04 -04:00
|
|
|
"github.com/mitchellh/multistep"
|
2013-07-25 01:56:37 -04:00
|
|
|
awscommon "github.com/mitchellh/packer/builder/amazon/common"
|
2013-07-25 01:19:04 -04:00
|
|
|
"github.com/mitchellh/packer/packer"
|
|
|
|
)
|
|
|
|
|
|
|
|
type StepRegisterAMI struct{}
|
|
|
|
|
2013-08-31 16:03:13 -04:00
|
|
|
func (s *StepRegisterAMI) Run(state multistep.StateBag) multistep.StepAction {
|
|
|
|
config := state.Get("config").(*Config)
|
|
|
|
ec2conn := state.Get("ec2").(*ec2.EC2)
|
|
|
|
manifestPath := state.Get("remote_manifest_path").(string)
|
|
|
|
ui := state.Get("ui").(packer.Ui)
|
2013-07-25 01:19:04 -04:00
|
|
|
|
|
|
|
ui.Say("Registering the AMI...")
|
2015-04-05 17:58:48 -04:00
|
|
|
registerOpts := &ec2.RegisterImageInput{
|
|
|
|
ImageLocation: &manifestPath,
|
2015-06-26 11:43:13 -04:00
|
|
|
Name: aws.String(config.AMIName),
|
2015-04-05 17:58:48 -04:00
|
|
|
BlockDeviceMappings: config.BlockDevices.BuildAMIDevices(),
|
2015-06-26 11:43:13 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if config.AMIVirtType != "" {
|
|
|
|
registerOpts.VirtualizationType = aws.String(config.AMIVirtType)
|
2013-07-25 01:19:04 -04:00
|
|
|
}
|
2013-07-25 01:45:55 -04:00
|
|
|
|
2014-06-04 17:58:11 -04:00
|
|
|
// Set SriovNetSupport to "simple". See http://goo.gl/icuXh5
|
|
|
|
if config.AMIEnhancedNetworking {
|
2015-08-17 20:44:01 -04:00
|
|
|
registerOpts.SriovNetSupport = aws.String("simple")
|
2014-06-04 17:58:11 -04:00
|
|
|
}
|
|
|
|
|
2013-07-25 01:45:55 -04:00
|
|
|
registerResp, err := ec2conn.RegisterImage(registerOpts)
|
|
|
|
if err != nil {
|
2013-08-31 16:03:13 -04:00
|
|
|
state.Put("error", fmt.Errorf("Error registering AMI: %s", err))
|
|
|
|
ui.Error(state.Get("error").(error).Error())
|
2013-07-25 01:19:04 -04:00
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
|
2013-07-25 01:45:55 -04:00
|
|
|
// Set the AMI ID in the state
|
2015-08-17 20:44:01 -04:00
|
|
|
ui.Say(fmt.Sprintf("AMI: %s", *registerResp.ImageId))
|
2013-07-25 01:45:55 -04:00
|
|
|
amis := make(map[string]string)
|
2015-08-17 20:44:01 -04:00
|
|
|
amis[*ec2conn.Config.Region] = *registerResp.ImageId
|
2013-08-31 16:03:13 -04:00
|
|
|
state.Put("amis", amis)
|
2013-07-25 01:19:04 -04:00
|
|
|
|
2013-07-25 01:56:37 -04:00
|
|
|
// Wait for the image to become ready
|
2013-09-12 23:33:32 -04:00
|
|
|
stateChange := awscommon.StateChangeConf{
|
|
|
|
Pending: []string{"pending"},
|
|
|
|
Target: "available",
|
2015-08-17 20:44:01 -04:00
|
|
|
Refresh: awscommon.AMIStateRefreshFunc(ec2conn, *registerResp.ImageId),
|
2013-09-12 23:33:32 -04:00
|
|
|
StepState: state,
|
|
|
|
}
|
|
|
|
|
2013-07-25 01:56:37 -04:00
|
|
|
ui.Say("Waiting for AMI to become ready...")
|
2013-09-12 23:33:32 -04:00
|
|
|
if _, err := awscommon.WaitForState(&stateChange); err != nil {
|
2013-07-25 01:56:37 -04:00
|
|
|
err := fmt.Errorf("Error waiting for AMI: %s", err)
|
2013-08-31 16:03:13 -04:00
|
|
|
state.Put("error", err)
|
2013-07-25 01:56:37 -04:00
|
|
|
ui.Error(err.Error())
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
|
2013-07-25 01:19:04 -04:00
|
|
|
return multistep.ActionContinue
|
|
|
|
}
|
|
|
|
|
2013-08-31 16:03:13 -04:00
|
|
|
func (s *StepRegisterAMI) Cleanup(multistep.StateBag) {}
|