2013-07-15 15:02:18 +09:00
|
|
|
package ebs
|
2013-05-21 00:55:32 -07:00
|
|
|
|
|
|
|
import (
|
2013-05-27 15:15:42 -07:00
|
|
|
"fmt"
|
2013-05-21 00:55:32 -07:00
|
|
|
"github.com/mitchellh/goamz/ec2"
|
2013-06-04 10:00:06 -07:00
|
|
|
"github.com/mitchellh/multistep"
|
2013-07-25 00:56:37 -05:00
|
|
|
awscommon "github.com/mitchellh/packer/builder/amazon/common"
|
2013-05-21 00:55:32 -07:00
|
|
|
"github.com/mitchellh/packer/packer"
|
|
|
|
)
|
|
|
|
|
2013-08-06 14:54:14 -07:00
|
|
|
type stepCreateAMI struct{}
|
2013-05-21 00:55:32 -07:00
|
|
|
|
2013-08-31 13:00:43 -07:00
|
|
|
func (s *stepCreateAMI) Run(state multistep.StateBag) multistep.StepAction {
|
|
|
|
config := state.Get("config").(config)
|
|
|
|
ec2conn := state.Get("ec2").(*ec2.EC2)
|
|
|
|
instance := state.Get("instance").(*ec2.Instance)
|
|
|
|
ui := state.Get("ui").(packer.Ui)
|
2013-05-21 00:55:32 -07:00
|
|
|
|
|
|
|
// Create the image
|
2013-08-08 14:57:38 -07:00
|
|
|
ui.Say(fmt.Sprintf("Creating the AMI: %s", config.AMIName))
|
2013-05-21 00:55:32 -07:00
|
|
|
createOpts := &ec2.CreateImage{
|
2013-08-15 14:05:08 -07:00
|
|
|
InstanceId: instance.InstanceId,
|
|
|
|
Name: config.AMIName,
|
|
|
|
BlockDevices: config.BlockDevices.BuildAMIDevices(),
|
2013-05-21 00:55:32 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
createResp, err := ec2conn.CreateImage(createOpts)
|
|
|
|
if err != nil {
|
2013-06-19 20:54:02 -07:00
|
|
|
err := fmt.Errorf("Error creating AMI: %s", err)
|
2013-08-31 13:00:43 -07:00
|
|
|
state.Put("error", err)
|
2013-05-21 00:55:32 -07:00
|
|
|
ui.Error(err.Error())
|
2013-06-04 10:00:06 -07:00
|
|
|
return multistep.ActionHalt
|
2013-05-21 00:55:32 -07:00
|
|
|
}
|
|
|
|
|
2013-05-21 22:28:41 -07:00
|
|
|
// Set the AMI ID in the state
|
2013-05-27 15:15:42 -07:00
|
|
|
ui.Say(fmt.Sprintf("AMI: %s", createResp.ImageId))
|
2013-05-21 22:28:41 -07:00
|
|
|
amis := make(map[string]string)
|
2013-07-29 16:42:35 -07:00
|
|
|
amis[ec2conn.Region.Name] = createResp.ImageId
|
2013-08-31 13:00:43 -07:00
|
|
|
state.Put("amis", amis)
|
2013-05-21 00:55:32 -07:00
|
|
|
|
|
|
|
// Wait for the image to become ready
|
2013-09-12 20:33:32 -07:00
|
|
|
stateChange := awscommon.StateChangeConf{
|
|
|
|
Conn: ec2conn,
|
|
|
|
Pending: []string{"pending"},
|
|
|
|
Target: "available",
|
|
|
|
Refresh: awscommon.AMIStateRefreshFunc(ec2conn, createResp.ImageId),
|
|
|
|
StepState: state,
|
|
|
|
}
|
|
|
|
|
2013-05-21 00:55:32 -07:00
|
|
|
ui.Say("Waiting for AMI to become ready...")
|
2013-09-12 20:33:32 -07:00
|
|
|
if _, err := awscommon.WaitForState(&stateChange); err != nil {
|
2013-07-25 00:56:37 -05:00
|
|
|
err := fmt.Errorf("Error waiting for AMI: %s", err)
|
2013-08-31 13:00:43 -07:00
|
|
|
state.Put("error", err)
|
2013-07-25 00:56:37 -05:00
|
|
|
ui.Error(err.Error())
|
|
|
|
return multistep.ActionHalt
|
2013-05-21 00:55:32 -07:00
|
|
|
}
|
|
|
|
|
2013-06-04 10:00:06 -07:00
|
|
|
return multistep.ActionContinue
|
2013-05-21 00:55:32 -07:00
|
|
|
}
|
|
|
|
|
2013-08-31 13:00:43 -07:00
|
|
|
func (s *stepCreateAMI) Cleanup(multistep.StateBag) {
|
2013-05-21 00:55:32 -07:00
|
|
|
// No cleanup...
|
|
|
|
}
|