2013-05-09 14:16:39 -07: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-08 22:34:20 -07:00
|
|
|
package amazonebs
|
|
|
|
|
|
|
|
import (
|
2013-05-10 15:21:11 -07:00
|
|
|
"github.com/mitchellh/goamz/aws"
|
|
|
|
"github.com/mitchellh/goamz/ec2"
|
2013-05-20 16:39:43 -07:00
|
|
|
"github.com/mitchellh/mapstructure"
|
2013-05-08 22:34:20 -07:00
|
|
|
"github.com/mitchellh/packer/packer"
|
2013-05-09 13:26:40 -07:00
|
|
|
"log"
|
2013-05-08 22:34:20 -07:00
|
|
|
)
|
|
|
|
|
2013-05-21 22:28:41 -07:00
|
|
|
// The unique ID for this builder
|
|
|
|
const BuilderId = "mitchellh.amazonebs"
|
|
|
|
|
2013-05-08 22:34:20 -07:00
|
|
|
type config struct {
|
2013-05-20 16:50:35 -07:00
|
|
|
// Access information
|
2013-05-20 16:39:43 -07:00
|
|
|
AccessKey string `mapstructure:"access_key"`
|
|
|
|
SecretKey string `mapstructure:"secret_key"`
|
2013-05-20 16:50:35 -07:00
|
|
|
|
2013-05-20 22:23:23 -07:00
|
|
|
// Information for the source instance
|
|
|
|
Region string
|
|
|
|
SourceAmi string `mapstructure:"source_ami"`
|
|
|
|
InstanceType string `mapstructure:"instance_type"`
|
2013-05-21 11:36:26 -07:00
|
|
|
SSHUsername string `mapstructure:"ssh_username"`
|
2013-05-21 11:40:07 -07:00
|
|
|
SSHPort int `mapstructure:"ssh_port"`
|
2013-05-20 16:50:35 -07:00
|
|
|
|
|
|
|
// Configuration of the resulting AMI
|
|
|
|
AMIName string `mapstructure:"ami_name"`
|
2013-05-08 22:34:20 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
type Builder struct {
|
|
|
|
config config
|
|
|
|
}
|
|
|
|
|
2013-05-09 13:19:38 -07:00
|
|
|
func (b *Builder) Prepare(raw interface{}) (err error) {
|
2013-05-20 16:39:43 -07:00
|
|
|
err = mapstructure.Decode(raw, &b.config)
|
2013-05-09 13:19:38 -07:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2013-05-20 23:43:37 -07:00
|
|
|
log.Printf("Config: %+v", b.config)
|
2013-05-10 13:01:54 -07:00
|
|
|
|
2013-05-22 14:36:21 -07:00
|
|
|
// TODO: config validation and asking for fields:
|
|
|
|
// * access key
|
|
|
|
// * secret key
|
|
|
|
// * region
|
|
|
|
// * source ami
|
|
|
|
// * instance type
|
|
|
|
// * SSH username
|
|
|
|
// * SSH port? (or default to 22?)
|
|
|
|
|
2013-05-09 13:19:38 -07:00
|
|
|
return
|
2013-05-09 10:54:42 -07:00
|
|
|
}
|
2013-05-08 22:34:20 -07:00
|
|
|
|
2013-05-21 22:28:41 -07:00
|
|
|
func (b *Builder) Run(ui packer.Ui, hook packer.Hook) packer.Artifact {
|
2013-05-10 15:21:11 -07:00
|
|
|
auth := aws.Auth{b.config.AccessKey, b.config.SecretKey}
|
|
|
|
region := aws.Regions[b.config.Region]
|
|
|
|
ec2conn := ec2.New(auth, region)
|
|
|
|
|
2013-05-21 00:55:32 -07: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 15:21:11 -07:00
|
|
|
|
2013-05-21 00:55:32 -07:00
|
|
|
// Build the steps
|
|
|
|
steps := []Step{
|
|
|
|
&stepKeyPair{},
|
|
|
|
&stepRunSourceInstance{},
|
|
|
|
&stepStopInstance{},
|
|
|
|
&stepCreateAMI{},
|
2013-05-20 23:18:44 -07:00
|
|
|
}
|
|
|
|
|
2013-05-21 00:55:32 -07:00
|
|
|
// Run!
|
|
|
|
RunSteps(state, steps)
|
2013-05-21 22:28:41 -07:00
|
|
|
|
|
|
|
// Build the artifact and return it
|
|
|
|
return &artifact{state["amis"].(map[string]string)}
|
2013-05-10 13:01:54 -07:00
|
|
|
}
|