63 lines
1.7 KiB
Go
63 lines
1.7 KiB
Go
package ebs
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/mitchellh/goamz/ec2"
|
|
"github.com/mitchellh/multistep"
|
|
awscommon "github.com/mitchellh/packer/builder/amazon/common"
|
|
"github.com/mitchellh/packer/packer"
|
|
)
|
|
|
|
type stepCreateAMI struct{}
|
|
|
|
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)
|
|
|
|
// Create the image
|
|
ui.Say(fmt.Sprintf("Creating the AMI: %s", config.AMIName))
|
|
createOpts := &ec2.CreateImage{
|
|
InstanceId: instance.InstanceId,
|
|
Name: config.AMIName,
|
|
BlockDevices: config.BlockDevices.BuildAMIDevices(),
|
|
}
|
|
|
|
createResp, err := ec2conn.CreateImage(createOpts)
|
|
if err != nil {
|
|
err := fmt.Errorf("Error creating AMI: %s", err)
|
|
state.Put("error", err)
|
|
ui.Error(err.Error())
|
|
return multistep.ActionHalt
|
|
}
|
|
|
|
// Set the AMI ID in the state
|
|
ui.Message(fmt.Sprintf("AMI: %s", createResp.ImageId))
|
|
amis := make(map[string]string)
|
|
amis[ec2conn.Region.Name] = createResp.ImageId
|
|
state.Put("amis", amis)
|
|
|
|
// Wait for the image to become ready
|
|
stateChange := awscommon.StateChangeConf{
|
|
Pending: []string{"pending"},
|
|
Target: "available",
|
|
Refresh: awscommon.AMIStateRefreshFunc(ec2conn, createResp.ImageId),
|
|
StepState: state,
|
|
}
|
|
|
|
ui.Say("Waiting for AMI to become ready...")
|
|
if _, err := awscommon.WaitForState(&stateChange); err != nil {
|
|
err := fmt.Errorf("Error waiting for AMI: %s", err)
|
|
state.Put("error", err)
|
|
ui.Error(err.Error())
|
|
return multistep.ActionHalt
|
|
}
|
|
|
|
return multistep.ActionContinue
|
|
}
|
|
|
|
func (s *stepCreateAMI) Cleanup(multistep.StateBag) {
|
|
// No cleanup...
|
|
}
|