2013-07-25 01:19:04 -04:00
|
|
|
package instance
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2013-07-25 01:45:55 -04:00
|
|
|
"github.com/mitchellh/goamz/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{}
|
|
|
|
|
|
|
|
func (s *StepRegisterAMI) Run(state map[string]interface{}) multistep.StepAction {
|
|
|
|
config := state["config"].(*Config)
|
2013-07-25 01:45:55 -04:00
|
|
|
ec2conn := state["ec2"].(*ec2.EC2)
|
2013-07-25 01:19:04 -04:00
|
|
|
manifestPath := state["remote_manifest_path"].(string)
|
|
|
|
ui := state["ui"].(packer.Ui)
|
|
|
|
|
|
|
|
ui.Say("Registering the AMI...")
|
2013-07-25 01:45:55 -04:00
|
|
|
registerOpts := &ec2.RegisterImage{
|
|
|
|
ImageLocation: manifestPath,
|
2013-08-08 18:27:12 -04:00
|
|
|
Name: config.AMIName,
|
2013-07-25 01:19:04 -04:00
|
|
|
}
|
2013-07-25 01:45:55 -04:00
|
|
|
|
|
|
|
registerResp, err := ec2conn.RegisterImage(registerOpts)
|
|
|
|
if err != nil {
|
2013-07-25 01:19:04 -04:00
|
|
|
state["error"] = fmt.Errorf("Error registering AMI: %s", err)
|
|
|
|
ui.Error(state["error"].(error).Error())
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
|
2013-07-25 01:45:55 -04:00
|
|
|
// Set the AMI ID in the state
|
|
|
|
ui.Say(fmt.Sprintf("AMI: %s", registerResp.ImageId))
|
|
|
|
amis := make(map[string]string)
|
2013-07-29 19:42:35 -04:00
|
|
|
amis[ec2conn.Region.Name] = registerResp.ImageId
|
2013-07-25 01:45:55 -04:00
|
|
|
state["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
|
|
|
|
ui.Say("Waiting for AMI to become ready...")
|
|
|
|
if err := awscommon.WaitForAMI(ec2conn, registerResp.ImageId); err != nil {
|
|
|
|
err := fmt.Errorf("Error waiting for AMI: %s", err)
|
|
|
|
state["error"] = err
|
|
|
|
ui.Error(err.Error())
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
|
2013-07-25 01:19:04 -04:00
|
|
|
return multistep.ActionContinue
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *StepRegisterAMI) Cleanup(map[string]interface{}) {}
|