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-06-04 10:00:06 -07:00
|
|
|
func (s *stepCreateAMI) Run(state map[string]interface{}) multistep.StepAction {
|
2013-05-21 00:55:32 -07:00
|
|
|
config := state["config"].(config)
|
|
|
|
ec2conn := state["ec2"].(*ec2.EC2)
|
|
|
|
instance := state["instance"].(*ec2.Instance)
|
|
|
|
ui := state["ui"].(packer.Ui)
|
|
|
|
|
|
|
|
// 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{
|
|
|
|
InstanceId: instance.InstanceId,
|
2013-08-08 14:57:38 -07:00
|
|
|
Name: config.AMIName,
|
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)
|
|
|
|
state["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-05-21 22:28:41 -07:00
|
|
|
state["amis"] = amis
|
2013-05-21 00:55:32 -07:00
|
|
|
|
|
|
|
// Wait for the image to become ready
|
|
|
|
ui.Say("Waiting for AMI to become ready...")
|
2013-07-25 00:56:37 -05:00
|
|
|
if err := awscommon.WaitForAMI(ec2conn, createResp.ImageId); err != nil {
|
|
|
|
err := fmt.Errorf("Error waiting for AMI: %s", err)
|
|
|
|
state["error"] = err
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
func (s *stepCreateAMI) Cleanup(map[string]interface{}) {
|
|
|
|
// No cleanup...
|
|
|
|
}
|