2013-05-09 17:16:39 -04:00
|
|
|
// The amazonebs package contains a packer.Builder implementation that
|
|
|
|
// builds AMIs for Amazon EC2.
|
|
|
|
//
|
|
|
|
// In general, there are two types of AMIs that can be created: ebs-backed or
|
|
|
|
// instance-store. This builder _only_ builds ebs-backed images.
|
2013-05-09 01:34:20 -04:00
|
|
|
package amazonebs
|
|
|
|
|
|
|
|
import (
|
2013-06-08 20:41:56 -04:00
|
|
|
"errors"
|
2013-05-10 18:21:11 -04:00
|
|
|
"github.com/mitchellh/goamz/aws"
|
|
|
|
"github.com/mitchellh/goamz/ec2"
|
2013-05-20 19:39:43 -04:00
|
|
|
"github.com/mitchellh/mapstructure"
|
2013-06-04 13:00:06 -04:00
|
|
|
"github.com/mitchellh/multistep"
|
2013-05-09 01:34:20 -04:00
|
|
|
"github.com/mitchellh/packer/packer"
|
2013-05-09 16:26:40 -04:00
|
|
|
"log"
|
2013-05-09 01:34:20 -04:00
|
|
|
)
|
|
|
|
|
2013-05-22 01:28:41 -04:00
|
|
|
// The unique ID for this builder
|
|
|
|
const BuilderId = "mitchellh.amazonebs"
|
|
|
|
|
2013-05-09 01:34:20 -04:00
|
|
|
type config struct {
|
2013-05-20 19:50:35 -04:00
|
|
|
// Access information
|
2013-05-20 19:39:43 -04:00
|
|
|
AccessKey string `mapstructure:"access_key"`
|
|
|
|
SecretKey string `mapstructure:"secret_key"`
|
2013-05-20 19:50:35 -04:00
|
|
|
|
2013-05-21 01:23:23 -04:00
|
|
|
// Information for the source instance
|
|
|
|
Region string
|
|
|
|
SourceAmi string `mapstructure:"source_ami"`
|
|
|
|
InstanceType string `mapstructure:"instance_type"`
|
2013-05-21 14:36:26 -04:00
|
|
|
SSHUsername string `mapstructure:"ssh_username"`
|
2013-05-21 14:40:07 -04:00
|
|
|
SSHPort int `mapstructure:"ssh_port"`
|
2013-05-20 19:50:35 -04:00
|
|
|
|
|
|
|
// Configuration of the resulting AMI
|
|
|
|
AMIName string `mapstructure:"ami_name"`
|
2013-05-09 01:34:20 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
type Builder struct {
|
|
|
|
config config
|
2013-06-04 13:53:35 -04:00
|
|
|
runner multistep.Runner
|
2013-05-09 01:34:20 -04:00
|
|
|
}
|
|
|
|
|
2013-05-09 16:19:38 -04:00
|
|
|
func (b *Builder) Prepare(raw interface{}) (err error) {
|
2013-05-20 19:39:43 -04:00
|
|
|
err = mapstructure.Decode(raw, &b.config)
|
2013-05-09 16:19:38 -04:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2013-06-08 20:41:56 -04:00
|
|
|
if b.config.SSHPort == 0 {
|
|
|
|
b.config.SSHPort = 22
|
|
|
|
}
|
|
|
|
|
|
|
|
// Accumulate any errors
|
|
|
|
errs := make([]error, 0)
|
|
|
|
|
|
|
|
if b.config.AccessKey == "" {
|
|
|
|
errs = append(errs, errors.New("An access_key must be specified"))
|
|
|
|
}
|
|
|
|
|
|
|
|
if b.config.SecretKey == "" {
|
|
|
|
errs = append(errs, errors.New("A secret_key must be specified"))
|
|
|
|
}
|
|
|
|
|
2013-06-08 20:46:34 -04:00
|
|
|
if b.config.SourceAmi == "" {
|
|
|
|
errs = append(errs, errors.New("A source_ami must be specified"))
|
|
|
|
}
|
|
|
|
|
|
|
|
if b.config.InstanceType == "" {
|
|
|
|
errs = append(errs, errors.New("An instance_type must be specified"))
|
|
|
|
}
|
|
|
|
|
|
|
|
if b.config.SSHUsername == "" {
|
|
|
|
errs = append(errs, errors.New("An ssh_username must be specified"))
|
|
|
|
}
|
|
|
|
|
2013-06-08 20:41:56 -04:00
|
|
|
if len(errs) > 0 {
|
|
|
|
return &packer.MultiError{errs}
|
|
|
|
}
|
2013-05-10 16:01:54 -04:00
|
|
|
|
2013-05-22 17:36:21 -04:00
|
|
|
// TODO: config validation and asking for fields:
|
2013-06-02 00:50:20 -04:00
|
|
|
// * region (exists and valid)
|
2013-05-22 17:36:21 -04:00
|
|
|
|
2013-06-08 20:41:56 -04:00
|
|
|
log.Printf("Config: %+v", b.config)
|
2013-05-09 16:19:38 -04:00
|
|
|
return
|
2013-05-09 13:54:42 -04:00
|
|
|
}
|
2013-05-09 01:34:20 -04:00
|
|
|
|
2013-05-22 01:28:41 -04:00
|
|
|
func (b *Builder) Run(ui packer.Ui, hook packer.Hook) packer.Artifact {
|
2013-06-02 00:50:20 -04:00
|
|
|
// Basic sanity checks. These are panics now because the Prepare
|
|
|
|
// method should verify these exist and such.
|
|
|
|
if b.config.AccessKey == "" {
|
|
|
|
panic("access key not filled in")
|
|
|
|
}
|
|
|
|
|
|
|
|
if b.config.SecretKey == "" {
|
|
|
|
panic("secret key not filled in")
|
|
|
|
}
|
|
|
|
|
|
|
|
if b.config.Region == "" {
|
|
|
|
panic("region not filled in")
|
|
|
|
}
|
|
|
|
|
|
|
|
region, ok := aws.Regions[b.config.Region]
|
|
|
|
if !ok {
|
|
|
|
panic("region not found")
|
|
|
|
}
|
|
|
|
|
2013-05-10 18:21:11 -04:00
|
|
|
auth := aws.Auth{b.config.AccessKey, b.config.SecretKey}
|
|
|
|
ec2conn := ec2.New(auth, region)
|
|
|
|
|
2013-05-21 03:55:32 -04:00
|
|
|
// Setup the state bag and initial state for the steps
|
|
|
|
state := make(map[string]interface{})
|
|
|
|
state["config"] = b.config
|
|
|
|
state["ec2"] = ec2conn
|
|
|
|
state["hook"] = hook
|
|
|
|
state["ui"] = ui
|
2013-05-10 18:21:11 -04:00
|
|
|
|
2013-05-21 03:55:32 -04:00
|
|
|
// Build the steps
|
2013-06-04 13:00:06 -04:00
|
|
|
steps := []multistep.Step{
|
2013-05-21 03:55:32 -04:00
|
|
|
&stepKeyPair{},
|
|
|
|
&stepRunSourceInstance{},
|
2013-05-24 01:47:59 -04:00
|
|
|
&stepConnectSSH{},
|
|
|
|
&stepProvision{},
|
2013-05-21 03:55:32 -04:00
|
|
|
&stepStopInstance{},
|
|
|
|
&stepCreateAMI{},
|
2013-05-21 02:18:44 -04:00
|
|
|
}
|
|
|
|
|
2013-05-21 03:55:32 -04:00
|
|
|
// Run!
|
2013-06-04 13:53:35 -04:00
|
|
|
b.runner = &multistep.BasicRunner{Steps: steps}
|
|
|
|
b.runner.Run(state)
|
2013-05-22 01:28:41 -04:00
|
|
|
|
2013-06-04 14:26:08 -04:00
|
|
|
// If there are no AMIs, then jsut return
|
|
|
|
if _, ok := state["amis"]; !ok {
|
|
|
|
return nil
|
2013-06-04 13:59:12 -04:00
|
|
|
}
|
|
|
|
|
2013-05-22 01:28:41 -04:00
|
|
|
// Build the artifact and return it
|
|
|
|
return &artifact{state["amis"].(map[string]string)}
|
2013-05-10 16:01:54 -04:00
|
|
|
}
|
2013-06-03 17:44:34 -04:00
|
|
|
|
|
|
|
func (b *Builder) Cancel() {
|
2013-06-04 13:53:35 -04:00
|
|
|
if b.runner != nil {
|
|
|
|
log.Println("Cancelling the step runner...")
|
|
|
|
b.runner.Cancel()
|
|
|
|
}
|
2013-06-03 17:44:34 -04:00
|
|
|
}
|