2013-05-21 03:55:32 -04:00
|
|
|
package amazonebs
|
|
|
|
|
|
|
|
import (
|
2013-06-04 15:52:52 -04:00
|
|
|
"bytes"
|
2013-05-27 18:15:42 -04:00
|
|
|
"fmt"
|
2013-05-21 03:55:32 -04:00
|
|
|
"github.com/mitchellh/goamz/ec2"
|
2013-06-04 13:00:06 -04:00
|
|
|
"github.com/mitchellh/multistep"
|
2013-05-21 03:55:32 -04:00
|
|
|
"github.com/mitchellh/packer/packer"
|
2013-06-04 16:12:04 -04:00
|
|
|
"strconv"
|
2013-06-04 15:52:52 -04:00
|
|
|
"text/template"
|
|
|
|
"time"
|
2013-05-21 03:55:32 -04:00
|
|
|
)
|
|
|
|
|
2013-05-21 03:56:27 -04:00
|
|
|
type stepCreateAMI struct{}
|
2013-05-21 03:55:32 -04:00
|
|
|
|
2013-06-04 15:52:52 -04:00
|
|
|
type amiNameData struct {
|
|
|
|
CreateTime string
|
|
|
|
}
|
|
|
|
|
2013-06-04 13:00:06 -04:00
|
|
|
func (s *stepCreateAMI) Run(state map[string]interface{}) multistep.StepAction {
|
2013-05-21 03:55:32 -04:00
|
|
|
config := state["config"].(config)
|
|
|
|
ec2conn := state["ec2"].(*ec2.EC2)
|
|
|
|
instance := state["instance"].(*ec2.Instance)
|
|
|
|
ui := state["ui"].(packer.Ui)
|
|
|
|
|
2013-06-04 15:52:52 -04:00
|
|
|
// Parse the name of the AMI
|
|
|
|
amiNameBuf := new(bytes.Buffer)
|
|
|
|
tData := amiNameData{
|
2013-06-04 16:12:04 -04:00
|
|
|
strconv.FormatInt(time.Now().UTC().Unix(), 10),
|
2013-06-04 15:52:52 -04:00
|
|
|
}
|
|
|
|
|
2013-06-17 18:24:33 -04:00
|
|
|
t := template.Must(template.New("ami").Parse(config.AMIName))
|
2013-06-04 15:52:52 -04:00
|
|
|
t.Execute(amiNameBuf, tData)
|
|
|
|
amiName := amiNameBuf.String()
|
|
|
|
|
2013-05-21 03:55:32 -04:00
|
|
|
// Create the image
|
2013-06-04 15:52:52 -04:00
|
|
|
ui.Say(fmt.Sprintf("Creating the AMI: %s", amiName))
|
2013-05-21 03:55:32 -04:00
|
|
|
createOpts := &ec2.CreateImage{
|
|
|
|
InstanceId: instance.InstanceId,
|
2013-06-04 15:52:52 -04:00
|
|
|
Name: amiName,
|
2013-05-21 03:55:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
createResp, err := ec2conn.CreateImage(createOpts)
|
|
|
|
if err != nil {
|
|
|
|
ui.Error(err.Error())
|
2013-06-04 13:00:06 -04:00
|
|
|
return multistep.ActionHalt
|
2013-05-21 03:55:32 -04:00
|
|
|
}
|
|
|
|
|
2013-05-22 01:28:41 -04:00
|
|
|
// Set the AMI ID in the state
|
2013-05-27 18:15:42 -04:00
|
|
|
ui.Say(fmt.Sprintf("AMI: %s", createResp.ImageId))
|
2013-05-22 01:28:41 -04:00
|
|
|
amis := make(map[string]string)
|
|
|
|
amis[config.Region] = createResp.ImageId
|
|
|
|
state["amis"] = amis
|
2013-05-21 03:55:32 -04:00
|
|
|
|
|
|
|
// Wait for the image to become ready
|
|
|
|
ui.Say("Waiting for AMI to become ready...")
|
|
|
|
for {
|
|
|
|
imageResp, err := ec2conn.Images([]string{createResp.ImageId}, ec2.NewFilter())
|
|
|
|
if err != nil {
|
|
|
|
ui.Error(err.Error())
|
2013-06-04 13:00:06 -04:00
|
|
|
return multistep.ActionHalt
|
2013-05-21 03:55:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if imageResp.Images[0].State == "available" {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-04 13:00:06 -04:00
|
|
|
return multistep.ActionContinue
|
2013-05-21 03:55:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *stepCreateAMI) Cleanup(map[string]interface{}) {
|
|
|
|
// No cleanup...
|
|
|
|
}
|