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-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-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
|
|
|
)
|
|
|
|
|
|
|
|
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-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-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-05-21 02:43:37 -04:00
|
|
|
log.Printf("Config: %+v", b.config)
|
2013-05-10 16:01:54 -04:00
|
|
|
|
|
|
|
// TODO: Validate the configuration
|
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-11 13:31:30 -04:00
|
|
|
func (b *Builder) Run(ui packer.Ui, hook packer.Hook) {
|
2013-05-10 18:21:11 -04:00
|
|
|
auth := aws.Auth{b.config.AccessKey, b.config.SecretKey}
|
|
|
|
region := aws.Regions[b.config.Region]
|
|
|
|
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
|
|
|
|
steps := []Step{
|
|
|
|
&stepKeyPair{},
|
|
|
|
&stepRunSourceInstance{},
|
|
|
|
&stepStopInstance{},
|
|
|
|
&stepCreateAMI{},
|
2013-05-21 02:18:44 -04:00
|
|
|
}
|
|
|
|
|
2013-05-21 03:55:32 -04:00
|
|
|
// Run!
|
|
|
|
RunSteps(state, steps)
|
2013-05-10 16:01:54 -04:00
|
|
|
}
|