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-07-15 02:02:18 -04:00
|
|
|
package ebs
|
2013-05-09 01:34:20 -04:00
|
|
|
|
|
|
|
import (
|
2013-08-30 17:48:50 -04:00
|
|
|
"fmt"
|
2014-06-04 17:58:11 -04:00
|
|
|
"log"
|
|
|
|
|
2015-06-03 17:13:52 -04:00
|
|
|
"github.com/aws/aws-sdk-go/service/ec2"
|
2013-06-04 13:00:06 -04:00
|
|
|
"github.com/mitchellh/multistep"
|
2013-07-16 00:08:19 -04:00
|
|
|
awscommon "github.com/mitchellh/packer/builder/amazon/common"
|
2013-08-01 15:11:54 -04:00
|
|
|
"github.com/mitchellh/packer/common"
|
2015-05-27 14:35:56 -04:00
|
|
|
"github.com/mitchellh/packer/helper/config"
|
2013-05-09 01:34:20 -04:00
|
|
|
"github.com/mitchellh/packer/packer"
|
2015-05-27 14:35:56 -04:00
|
|
|
"github.com/mitchellh/packer/template/interpolate"
|
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"
|
|
|
|
|
2015-05-27 14:35:56 -04:00
|
|
|
type Config struct {
|
2013-07-16 00:28:49 -04:00
|
|
|
common.PackerConfig `mapstructure:",squash"`
|
2013-07-16 00:08:19 -04:00
|
|
|
awscommon.AccessConfig `mapstructure:",squash"`
|
2013-08-09 01:50:23 -04:00
|
|
|
awscommon.AMIConfig `mapstructure:",squash"`
|
2013-08-15 17:05:08 -04:00
|
|
|
awscommon.BlockDevices `mapstructure:",squash"`
|
2013-07-16 00:23:40 -04:00
|
|
|
awscommon.RunConfig `mapstructure:",squash"`
|
2013-05-20 19:50:35 -04:00
|
|
|
|
2015-05-27 14:35:56 -04:00
|
|
|
ctx *interpolate.Context
|
2013-05-09 01:34:20 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
type Builder struct {
|
2015-05-27 14:35:56 -04:00
|
|
|
config Config
|
2013-06-04 13:53:35 -04:00
|
|
|
runner multistep.Runner
|
2013-05-09 01:34:20 -04:00
|
|
|
}
|
|
|
|
|
2013-11-02 23:56:54 -04:00
|
|
|
func (b *Builder) Prepare(raws ...interface{}) ([]string, error) {
|
2015-05-27 14:35:56 -04:00
|
|
|
b.config.ctx = &interpolate.Context{Funcs: awscommon.TemplateFuncs}
|
|
|
|
err := config.Decode(&b.config, &config.DecodeOpts{
|
|
|
|
Interpolate: true,
|
|
|
|
InterpolateContext: b.config.ctx,
|
|
|
|
}, raws...)
|
2013-07-13 20:28:56 -04:00
|
|
|
if err != nil {
|
2013-11-02 23:56:54 -04:00
|
|
|
return nil, err
|
2013-07-13 20:28:56 -04:00
|
|
|
}
|
2013-06-14 15:29:48 -04:00
|
|
|
|
2013-07-13 20:28:56 -04:00
|
|
|
// Accumulate any errors
|
2015-05-27 14:35:56 -04:00
|
|
|
var errs *packer.MultiError
|
|
|
|
errs = packer.MultiErrorAppend(errs, b.config.AccessConfig.Prepare(b.config.ctx)...)
|
|
|
|
errs = packer.MultiErrorAppend(errs, b.config.BlockDevices.Prepare(b.config.ctx)...)
|
|
|
|
errs = packer.MultiErrorAppend(errs, b.config.AMIConfig.Prepare(b.config.ctx)...)
|
|
|
|
errs = packer.MultiErrorAppend(errs, b.config.RunConfig.Prepare(b.config.ctx)...)
|
2013-07-13 20:28:56 -04:00
|
|
|
|
2013-07-19 19:08:25 -04:00
|
|
|
if errs != nil && len(errs.Errors) > 0 {
|
2013-11-02 23:56:54 -04:00
|
|
|
return nil, errs
|
2013-06-08 20:41:56 -04:00
|
|
|
}
|
2013-05-10 16:01:54 -04:00
|
|
|
|
2013-11-02 03:57:33 -04:00
|
|
|
log.Println(common.ScrubConfig(b.config, b.config.AccessKey, b.config.SecretKey))
|
2013-11-02 23:56:54 -04:00
|
|
|
return nil, nil
|
2013-05-09 13:54:42 -04:00
|
|
|
}
|
2013-05-09 01:34:20 -04:00
|
|
|
|
2013-06-12 19:06:56 -04:00
|
|
|
func (b *Builder) Run(ui packer.Ui, hook packer.Hook, cache packer.Cache) (packer.Artifact, error) {
|
2015-04-05 17:58:48 -04:00
|
|
|
config, err := b.config.Config()
|
2013-07-29 19:42:35 -04:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2013-06-02 00:50:20 -04:00
|
|
|
}
|
|
|
|
|
2015-04-05 17:58:48 -04:00
|
|
|
ec2conn := ec2.New(config)
|
2013-05-10 18:21:11 -04:00
|
|
|
|
2013-05-21 03:55:32 -04:00
|
|
|
// Setup the state bag and initial state for the steps
|
2013-08-31 16:00:43 -04:00
|
|
|
state := new(multistep.BasicStateBag)
|
|
|
|
state.Put("config", b.config)
|
|
|
|
state.Put("ec2", ec2conn)
|
|
|
|
state.Put("hook", hook)
|
|
|
|
state.Put("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{
|
2015-06-08 18:08:39 -04:00
|
|
|
&awscommon.StepPreValidate{
|
|
|
|
DestAmiName: b.config.AMIName,
|
|
|
|
},
|
2014-06-04 17:58:11 -04:00
|
|
|
&awscommon.StepSourceAMIInfo{
|
|
|
|
SourceAmi: b.config.SourceAmi,
|
|
|
|
EnhancedNetworking: b.config.AMIEnhancedNetworking,
|
|
|
|
},
|
2013-08-30 17:48:50 -04:00
|
|
|
&awscommon.StepKeyPair{
|
2014-03-24 07:47:00 -04:00
|
|
|
Debug: b.config.PackerDebug,
|
|
|
|
DebugKeyPath: fmt.Sprintf("ec2_%s.pem", b.config.PackerBuildName),
|
|
|
|
KeyPairName: b.config.TemporaryKeyPairName,
|
|
|
|
PrivateKeyFile: b.config.SSHPrivateKeyFile,
|
2013-08-30 17:48:50 -04:00
|
|
|
},
|
2013-07-20 22:50:55 -04:00
|
|
|
&awscommon.StepSecurityGroup{
|
2013-10-02 13:52:16 -04:00
|
|
|
SecurityGroupIds: b.config.SecurityGroupIds,
|
|
|
|
SSHPort: b.config.SSHPort,
|
|
|
|
VpcId: b.config.VpcId,
|
2013-07-20 22:58:27 -04:00
|
|
|
},
|
|
|
|
&awscommon.StepRunSourceInstance{
|
2013-11-25 20:32:08 -05:00
|
|
|
Debug: b.config.PackerDebug,
|
|
|
|
ExpectedRootDevice: "ebs",
|
2014-05-07 13:13:27 -04:00
|
|
|
SpotPrice: b.config.SpotPrice,
|
2014-09-06 13:44:12 -04:00
|
|
|
SpotPriceProduct: b.config.SpotPriceAutoProduct,
|
2013-11-25 20:32:08 -05:00
|
|
|
InstanceType: b.config.InstanceType,
|
|
|
|
UserData: b.config.UserData,
|
|
|
|
UserDataFile: b.config.UserDataFile,
|
|
|
|
SourceAMI: b.config.SourceAmi,
|
|
|
|
IamInstanceProfile: b.config.IamInstanceProfile,
|
|
|
|
SubnetId: b.config.SubnetId,
|
|
|
|
AssociatePublicIpAddress: b.config.AssociatePublicIpAddress,
|
|
|
|
AvailabilityZone: b.config.AvailabilityZone,
|
|
|
|
BlockDevices: b.config.BlockDevices,
|
2013-12-27 22:54:35 -05:00
|
|
|
Tags: b.config.RunTags,
|
2013-07-20 22:50:55 -04:00
|
|
|
},
|
2013-07-15 01:06:41 -04:00
|
|
|
&common.StepConnectSSH{
|
2014-09-05 00:48:14 -04:00
|
|
|
SSHAddress: awscommon.SSHAddress(
|
|
|
|
ec2conn, b.config.SSHPort, b.config.SSHPrivateIp),
|
2013-07-20 23:03:00 -04:00
|
|
|
SSHConfig: awscommon.SSHConfig(b.config.SSHUsername),
|
2013-07-16 00:23:40 -04:00
|
|
|
SSHWaitTimeout: b.config.SSHTimeout(),
|
2013-07-15 01:06:41 -04:00
|
|
|
},
|
2013-07-16 02:44:41 -04:00
|
|
|
&common.StepProvision{},
|
2014-05-07 13:13:27 -04:00
|
|
|
&stepStopInstance{SpotPrice: b.config.SpotPrice},
|
2014-09-05 19:30:22 -04:00
|
|
|
// TODO(mitchellh): verify works with spots
|
2014-06-04 17:58:11 -04:00
|
|
|
&stepModifyInstance{},
|
2013-08-06 17:54:14 -04:00
|
|
|
&stepCreateAMI{},
|
2013-09-04 19:06:06 -04:00
|
|
|
&awscommon.StepAMIRegionCopy{
|
2015-05-28 11:31:22 -04:00
|
|
|
AccessConfig: &b.config.AccessConfig,
|
|
|
|
Regions: b.config.AMIRegions,
|
2015-06-05 07:15:48 -04:00
|
|
|
Name: b.config.AMIName,
|
2013-09-04 19:06:06 -04:00
|
|
|
},
|
2013-08-22 18:35:47 -04:00
|
|
|
&awscommon.StepModifyAMIAttributes{
|
|
|
|
Description: b.config.AMIDescription,
|
|
|
|
Users: b.config.AMIUsers,
|
|
|
|
Groups: b.config.AMIGroups,
|
|
|
|
},
|
2013-08-22 18:09:21 -04:00
|
|
|
&awscommon.StepCreateTags{
|
|
|
|
Tags: b.config.AMITags,
|
2013-08-22 18:03:30 -04:00
|
|
|
},
|
2013-05-21 02:18:44 -04:00
|
|
|
}
|
|
|
|
|
2013-05-21 03:55:32 -04:00
|
|
|
// Run!
|
2013-06-15 13:51:09 -04:00
|
|
|
if b.config.PackerDebug {
|
|
|
|
b.runner = &multistep.DebugRunner{
|
|
|
|
Steps: steps,
|
|
|
|
PauseFn: common.MultistepDebugFn(ui),
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
b.runner = &multistep.BasicRunner{Steps: steps}
|
|
|
|
}
|
|
|
|
|
2013-06-04 13:53:35 -04:00
|
|
|
b.runner.Run(state)
|
2013-05-22 01:28:41 -04:00
|
|
|
|
2013-06-19 23:54:02 -04:00
|
|
|
// If there was an error, return that
|
2013-08-31 16:00:43 -04:00
|
|
|
if rawErr, ok := state.GetOk("error"); ok {
|
2013-06-19 23:54:02 -04:00
|
|
|
return nil, rawErr.(error)
|
|
|
|
}
|
|
|
|
|
2013-06-19 00:54:33 -04:00
|
|
|
// If there are no AMIs, then just return
|
2013-08-31 16:00:43 -04:00
|
|
|
if _, ok := state.GetOk("amis"); !ok {
|
2013-06-12 19:06:56 -04:00
|
|
|
return nil, nil
|
2013-06-04 13:59:12 -04:00
|
|
|
}
|
|
|
|
|
2013-05-22 01:28:41 -04:00
|
|
|
// Build the artifact and return it
|
2013-07-20 23:08:41 -04:00
|
|
|
artifact := &awscommon.Artifact{
|
2013-08-31 16:00:43 -04:00
|
|
|
Amis: state.Get("amis").(map[string]string),
|
2013-07-20 23:08:41 -04:00
|
|
|
BuilderIdValue: BuilderId,
|
2013-07-20 23:08:54 -04:00
|
|
|
Conn: ec2conn,
|
2013-06-18 19:24:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return artifact, nil
|
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
|
|
|
}
|