2013-07-15 02:56:28 -04:00
|
|
|
// The instance package contains a packer.Builder implementation that builds
|
|
|
|
// AMIs for Amazon EC2 backed by instance storage, as opposed to EBS storage.
|
|
|
|
package instance
|
|
|
|
|
|
|
|
import (
|
2013-07-21 00:00:12 -04:00
|
|
|
"errors"
|
|
|
|
"fmt"
|
2014-06-04 17:58:11 -04:00
|
|
|
"log"
|
|
|
|
"os"
|
|
|
|
"strings"
|
|
|
|
|
2015-06-03 17:13:52 -04:00
|
|
|
"github.com/aws/aws-sdk-go/service/ec2"
|
2017-04-04 16:39:01 -04:00
|
|
|
awscommon "github.com/hashicorp/packer/builder/amazon/common"
|
|
|
|
"github.com/hashicorp/packer/common"
|
|
|
|
"github.com/hashicorp/packer/helper/communicator"
|
|
|
|
"github.com/hashicorp/packer/helper/config"
|
2018-01-19 19:18:44 -05:00
|
|
|
"github.com/hashicorp/packer/helper/multistep"
|
2017-04-04 16:39:01 -04:00
|
|
|
"github.com/hashicorp/packer/packer"
|
|
|
|
"github.com/hashicorp/packer/template/interpolate"
|
2013-07-15 02:56:28 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
// The unique ID for this builder
|
|
|
|
const BuilderId = "mitchellh.amazon.instance"
|
|
|
|
|
|
|
|
// Config is the configuration that is chained through the steps and
|
|
|
|
// settable from the template.
|
|
|
|
type Config struct {
|
2013-07-20 22:40:45 -04:00
|
|
|
common.PackerConfig `mapstructure:",squash"`
|
|
|
|
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-20 22:40:45 -04:00
|
|
|
awscommon.RunConfig `mapstructure:",squash"`
|
2013-07-21 00:00:12 -04:00
|
|
|
|
2013-07-25 00:29:21 -04:00
|
|
|
AccountId string `mapstructure:"account_id"`
|
|
|
|
BundleDestination string `mapstructure:"bundle_destination"`
|
|
|
|
BundlePrefix string `mapstructure:"bundle_prefix"`
|
|
|
|
BundleUploadCommand string `mapstructure:"bundle_upload_command"`
|
|
|
|
BundleVolCommand string `mapstructure:"bundle_vol_command"`
|
|
|
|
S3Bucket string `mapstructure:"s3_bucket"`
|
|
|
|
X509CertPath string `mapstructure:"x509_cert_path"`
|
|
|
|
X509KeyPath string `mapstructure:"x509_key_path"`
|
|
|
|
X509UploadPath string `mapstructure:"x509_upload_path"`
|
2013-08-08 18:27:12 -04:00
|
|
|
|
2015-06-22 12:22:42 -04:00
|
|
|
ctx interpolate.Context
|
2013-07-15 02:56:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
type Builder struct {
|
|
|
|
config Config
|
|
|
|
runner multistep.Runner
|
|
|
|
}
|
|
|
|
|
2013-11-02 23:56:54 -04:00
|
|
|
func (b *Builder) Prepare(raws ...interface{}) ([]string, error) {
|
2015-06-29 12:49:11 -04:00
|
|
|
configs := make([]interface{}, len(raws)+1)
|
|
|
|
configs[0] = map[string]interface{}{
|
|
|
|
"bundle_prefix": "image-{{timestamp}}",
|
|
|
|
}
|
|
|
|
copy(configs[1:], raws)
|
|
|
|
|
2015-06-22 12:22:42 -04:00
|
|
|
b.config.ctx.Funcs = awscommon.TemplateFuncs
|
2015-05-27 14:47:45 -04:00
|
|
|
err := config.Decode(&b.config, &config.DecodeOpts{
|
|
|
|
Interpolate: true,
|
2015-06-22 12:22:42 -04:00
|
|
|
InterpolateContext: &b.config.ctx,
|
2015-05-27 14:47:45 -04:00
|
|
|
InterpolateFilter: &interpolate.RenderFilter{
|
|
|
|
Exclude: []string{
|
2017-01-10 05:41:28 -05:00
|
|
|
"ami_description",
|
2015-05-27 14:47:45 -04:00
|
|
|
"bundle_upload_command",
|
|
|
|
"bundle_vol_command",
|
2017-01-10 05:41:28 -05:00
|
|
|
"run_tags",
|
|
|
|
"run_volume_tags",
|
|
|
|
"snapshot_tags",
|
|
|
|
"tags",
|
2015-05-27 14:47:45 -04:00
|
|
|
},
|
|
|
|
},
|
2015-06-29 12:49:11 -04:00
|
|
|
}, configs...)
|
2013-08-08 18:27:12 -04:00
|
|
|
if err != nil {
|
2013-11-02 23:56:54 -04:00
|
|
|
return nil, err
|
2013-08-08 18:27:12 -04:00
|
|
|
}
|
|
|
|
|
2017-03-09 17:24:49 -05:00
|
|
|
if b.config.PackerConfig.PackerForce {
|
|
|
|
b.config.AMIForceDeregister = true
|
|
|
|
}
|
|
|
|
|
2013-07-25 00:22:16 -04:00
|
|
|
if b.config.BundleDestination == "" {
|
|
|
|
b.config.BundleDestination = "/tmp"
|
|
|
|
}
|
|
|
|
|
2013-07-25 00:29:21 -04:00
|
|
|
if b.config.BundleUploadCommand == "" {
|
2015-06-10 16:18:05 -04:00
|
|
|
if b.config.IamInstanceProfile != "" {
|
|
|
|
b.config.BundleUploadCommand = "sudo -i -n ec2-upload-bundle " +
|
|
|
|
"-b {{.BucketName}} " +
|
|
|
|
"-m {{.ManifestPath}} " +
|
|
|
|
"-d {{.BundleDirectory}} " +
|
|
|
|
"--batch " +
|
|
|
|
"--region {{.Region}} " +
|
|
|
|
"--retry"
|
|
|
|
} else {
|
|
|
|
b.config.BundleUploadCommand = "sudo -i -n ec2-upload-bundle " +
|
|
|
|
"-b {{.BucketName}} " +
|
|
|
|
"-m {{.ManifestPath}} " +
|
|
|
|
"-a {{.AccessKey}} " +
|
|
|
|
"-s {{.SecretKey}} " +
|
|
|
|
"-d {{.BundleDirectory}} " +
|
|
|
|
"--batch " +
|
|
|
|
"--region {{.Region}} " +
|
|
|
|
"--retry"
|
|
|
|
}
|
2013-07-24 16:41:49 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if b.config.BundleVolCommand == "" {
|
2015-04-04 10:52:17 -04:00
|
|
|
b.config.BundleVolCommand = "sudo -i -n ec2-bundle-vol " +
|
2013-07-24 16:41:49 -04:00
|
|
|
"-k {{.KeyPath}} " +
|
|
|
|
"-u {{.AccountId}} " +
|
|
|
|
"-c {{.CertPath}} " +
|
|
|
|
"-r {{.Architecture}} " +
|
2013-09-18 16:42:15 -04:00
|
|
|
"-e {{.PrivatePath}}/* " +
|
2013-07-25 00:22:16 -04:00
|
|
|
"-d {{.Destination}} " +
|
|
|
|
"-p {{.Prefix}} " +
|
2014-09-05 12:32:35 -04:00
|
|
|
"--batch " +
|
|
|
|
"--no-filter"
|
2013-07-24 16:41:49 -04:00
|
|
|
}
|
|
|
|
|
2013-07-25 11:51:38 -04:00
|
|
|
if b.config.X509UploadPath == "" {
|
|
|
|
b.config.X509UploadPath = "/tmp"
|
|
|
|
}
|
|
|
|
|
2013-07-25 00:29:21 -04:00
|
|
|
// Accumulate any errors
|
2015-05-27 14:47:45 -04:00
|
|
|
var errs *packer.MultiError
|
2015-06-22 12:22:42 -04:00
|
|
|
errs = packer.MultiErrorAppend(errs, b.config.AccessConfig.Prepare(&b.config.ctx)...)
|
|
|
|
errs = packer.MultiErrorAppend(errs, b.config.BlockDevices.Prepare(&b.config.ctx)...)
|
2017-10-30 17:17:19 -04:00
|
|
|
errs = packer.MultiErrorAppend(errs,
|
|
|
|
b.config.AMIConfig.Prepare(&b.config.AccessConfig, &b.config.ctx)...)
|
2015-06-22 12:22:42 -04:00
|
|
|
errs = packer.MultiErrorAppend(errs, b.config.RunConfig.Prepare(&b.config.ctx)...)
|
2013-07-25 00:29:21 -04:00
|
|
|
|
|
|
|
if b.config.AccountId == "" {
|
|
|
|
errs = packer.MultiErrorAppend(errs, errors.New("account_id is required"))
|
|
|
|
} else {
|
|
|
|
b.config.AccountId = strings.Replace(b.config.AccountId, "-", "", -1)
|
|
|
|
}
|
|
|
|
|
2013-07-25 00:22:16 -04:00
|
|
|
if b.config.S3Bucket == "" {
|
|
|
|
errs = packer.MultiErrorAppend(errs, errors.New("s3_bucket is required"))
|
|
|
|
}
|
|
|
|
|
2013-07-21 00:00:12 -04:00
|
|
|
if b.config.X509CertPath == "" {
|
|
|
|
errs = packer.MultiErrorAppend(errs, errors.New("x509_cert_path is required"))
|
|
|
|
} else if _, err := os.Stat(b.config.X509CertPath); err != nil {
|
|
|
|
errs = packer.MultiErrorAppend(
|
|
|
|
errs, fmt.Errorf("x509_cert_path points to bad file: %s", err))
|
|
|
|
}
|
|
|
|
|
|
|
|
if b.config.X509KeyPath == "" {
|
|
|
|
errs = packer.MultiErrorAppend(errs, errors.New("x509_key_path is required"))
|
|
|
|
} else if _, err := os.Stat(b.config.X509KeyPath); err != nil {
|
|
|
|
errs = packer.MultiErrorAppend(
|
|
|
|
errs, fmt.Errorf("x509_key_path points to bad file: %s", err))
|
|
|
|
}
|
|
|
|
|
2017-12-08 17:56:19 -05:00
|
|
|
if b.config.IsSpotInstance() && (b.config.AMIENASupport || b.config.AMISriovNetSupport) {
|
|
|
|
errs = packer.MultiErrorAppend(errs,
|
|
|
|
fmt.Errorf("Spot instances do not support modification, which is required "+
|
|
|
|
"when either `ena_support` or `sriov_support` are set. Please ensure "+
|
|
|
|
"you use an AMI that already has either SR-IOV or ENA enabled."))
|
|
|
|
}
|
|
|
|
|
2013-07-20 22:40:45 -04:00
|
|
|
if errs != nil && len(errs.Errors) > 0 {
|
2013-11-02 23:56:54 -04:00
|
|
|
return nil, errs
|
2013-07-20 22:40:45 -04:00
|
|
|
}
|
|
|
|
|
2017-12-03 17:43:30 -05:00
|
|
|
log.Println(common.ScrubConfig(b.config, b.config.AccessKey, b.config.SecretKey, b.config.Token))
|
2013-11-02 23:56:54 -04:00
|
|
|
return nil, nil
|
2013-07-15 02:56:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func (b *Builder) Run(ui packer.Ui, hook packer.Hook, cache packer.Cache) (packer.Artifact, error) {
|
2017-03-01 19:43:09 -05:00
|
|
|
session, err := b.config.Session()
|
2016-11-01 18:53:04 -04:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2015-10-30 14:58:56 -04:00
|
|
|
ec2conn := ec2.New(session)
|
2013-07-20 22:40:45 -04:00
|
|
|
|
2017-05-11 20:46:35 -04:00
|
|
|
// If the subnet is specified but not the VpcId or AZ, try to determine them automatically
|
|
|
|
if b.config.SubnetId != "" && (b.config.AvailabilityZone == "" || b.config.VpcId == "") {
|
|
|
|
log.Printf("[INFO] Finding AZ and VpcId for the given subnet '%s'", b.config.SubnetId)
|
2016-01-06 02:12:20 -05:00
|
|
|
resp, err := ec2conn.DescribeSubnets(&ec2.DescribeSubnetsInput{SubnetIds: []*string{&b.config.SubnetId}})
|
2015-02-28 08:00:45 -05:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2017-05-11 20:46:35 -04:00
|
|
|
if b.config.AvailabilityZone == "" {
|
|
|
|
b.config.AvailabilityZone = *resp.Subnets[0].AvailabilityZone
|
|
|
|
log.Printf("[INFO] AvailabilityZone found: '%s'", b.config.AvailabilityZone)
|
|
|
|
}
|
|
|
|
if b.config.VpcId == "" {
|
|
|
|
b.config.VpcId = *resp.Subnets[0].VpcId
|
|
|
|
log.Printf("[INFO] VpcId found: '%s'", b.config.VpcId)
|
|
|
|
}
|
2015-02-28 08:00:45 -05:00
|
|
|
}
|
|
|
|
|
2013-07-20 22:40:45 -04:00
|
|
|
// Setup the state bag and initial state for the steps
|
2013-08-31 16:03:13 -04:00
|
|
|
state := new(multistep.BasicStateBag)
|
|
|
|
state.Put("config", &b.config)
|
|
|
|
state.Put("ec2", ec2conn)
|
2017-12-19 14:04:17 -05:00
|
|
|
state.Put("awsSession", session)
|
2013-08-31 16:03:13 -04:00
|
|
|
state.Put("hook", hook)
|
|
|
|
state.Put("ui", ui)
|
2013-07-20 22:40:45 -04:00
|
|
|
|
2017-10-04 05:29:38 -04:00
|
|
|
var instanceStep multistep.Step
|
|
|
|
|
2017-12-08 17:56:19 -05:00
|
|
|
if b.config.IsSpotInstance() {
|
|
|
|
instanceStep = &awscommon.StepRunSpotInstance{
|
2017-10-04 05:29:38 -04:00
|
|
|
AssociatePublicIpAddress: b.config.AssociatePublicIpAddress,
|
|
|
|
AvailabilityZone: b.config.AvailabilityZone,
|
|
|
|
BlockDevices: b.config.BlockDevices,
|
|
|
|
Ctx: b.config.ctx,
|
|
|
|
Debug: b.config.PackerDebug,
|
2017-12-08 17:56:19 -05:00
|
|
|
EbsOptimized: b.config.EbsOptimized,
|
|
|
|
IamInstanceProfile: b.config.IamInstanceProfile,
|
|
|
|
InstanceType: b.config.InstanceType,
|
|
|
|
SourceAMI: b.config.SourceAmi,
|
2017-10-04 19:18:46 -04:00
|
|
|
SpotPrice: b.config.SpotPrice,
|
|
|
|
SpotPriceProduct: b.config.SpotPriceAutoProduct,
|
2017-12-08 17:56:19 -05:00
|
|
|
SubnetId: b.config.SubnetId,
|
|
|
|
Tags: b.config.RunTags,
|
2017-10-04 05:29:38 -04:00
|
|
|
UserData: b.config.UserData,
|
|
|
|
UserDataFile: b.config.UserDataFile,
|
2017-12-08 17:56:19 -05:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
instanceStep = &awscommon.StepRunSourceInstance{
|
2017-10-04 05:29:38 -04:00
|
|
|
AssociatePublicIpAddress: b.config.AssociatePublicIpAddress,
|
|
|
|
AvailabilityZone: b.config.AvailabilityZone,
|
|
|
|
BlockDevices: b.config.BlockDevices,
|
|
|
|
Ctx: b.config.ctx,
|
2017-12-08 17:56:19 -05:00
|
|
|
Debug: b.config.PackerDebug,
|
|
|
|
EbsOptimized: b.config.EbsOptimized,
|
|
|
|
IamInstanceProfile: b.config.IamInstanceProfile,
|
|
|
|
InstanceType: b.config.InstanceType,
|
2018-02-02 23:16:23 -05:00
|
|
|
IsRestricted: b.config.IsChinaCloud() || b.config.IsGovCloud(),
|
2017-12-08 17:56:19 -05:00
|
|
|
SourceAMI: b.config.SourceAmi,
|
|
|
|
SubnetId: b.config.SubnetId,
|
|
|
|
Tags: b.config.RunTags,
|
|
|
|
UserData: b.config.UserData,
|
|
|
|
UserDataFile: b.config.UserDataFile,
|
2017-10-04 05:29:38 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-20 22:40:45 -04:00
|
|
|
// Build the steps
|
|
|
|
steps := []multistep.Step{
|
2015-06-12 14:05:15 -04:00
|
|
|
&awscommon.StepPreValidate{
|
|
|
|
DestAmiName: b.config.AMIName,
|
|
|
|
ForceDeregister: b.config.AMIForceDeregister,
|
|
|
|
},
|
2014-06-04 17:58:11 -04:00
|
|
|
&awscommon.StepSourceAMIInfo{
|
2017-08-28 12:18:23 -04:00
|
|
|
SourceAmi: b.config.SourceAmi,
|
|
|
|
EnableAMISriovNetSupport: b.config.AMISriovNetSupport,
|
|
|
|
EnableAMIENASupport: b.config.AMIENASupport,
|
|
|
|
AmiFilters: b.config.SourceAmiFilter,
|
2014-06-04 17:58:11 -04:00
|
|
|
},
|
2013-08-30 17:48:50 -04:00
|
|
|
&awscommon.StepKeyPair{
|
2015-01-13 16:27:33 -05:00
|
|
|
Debug: b.config.PackerDebug,
|
2016-11-29 16:33:53 -05:00
|
|
|
SSHAgentAuth: b.config.Comm.SSHAgentAuth,
|
2015-01-13 16:27:33 -05:00
|
|
|
DebugKeyPath: fmt.Sprintf("ec2_%s.pem", b.config.PackerBuildName),
|
2015-06-19 00:15:16 -04:00
|
|
|
KeyPairName: b.config.SSHKeyPairName,
|
2015-06-15 18:21:58 -04:00
|
|
|
PrivateKeyFile: b.config.RunConfig.Comm.SSHPrivateKey,
|
2015-01-13 22:58:41 -05:00
|
|
|
TemporaryKeyPairName: b.config.TemporaryKeyPairName,
|
2013-08-30 17:48:50 -04:00
|
|
|
},
|
2013-07-20 22:50:55 -04:00
|
|
|
&awscommon.StepSecurityGroup{
|
2015-06-14 02:12:59 -04:00
|
|
|
CommConfig: &b.config.RunConfig.Comm,
|
2013-10-02 13:52:16 -04:00
|
|
|
SecurityGroupIds: b.config.SecurityGroupIds,
|
|
|
|
VpcId: b.config.VpcId,
|
2017-10-12 20:05:31 -04:00
|
|
|
TemporarySGSourceCidr: b.config.TemporarySGSourceCidr,
|
2013-07-20 22:58:27 -04:00
|
|
|
},
|
2017-10-04 05:29:38 -04:00
|
|
|
instanceStep,
|
2015-06-14 13:50:18 -04:00
|
|
|
&awscommon.StepGetPassword{
|
2015-06-29 12:40:58 -04:00
|
|
|
Debug: b.config.PackerDebug,
|
2015-06-14 13:50:18 -04:00
|
|
|
Comm: &b.config.RunConfig.Comm,
|
|
|
|
Timeout: b.config.WindowsPasswordTimeout,
|
|
|
|
},
|
2015-06-13 18:16:12 -04:00
|
|
|
&communicator.StepConnect{
|
|
|
|
Config: &b.config.RunConfig.Comm,
|
2015-06-13 19:23:33 -04:00
|
|
|
Host: awscommon.SSHHost(
|
2015-06-13 18:16:12 -04:00
|
|
|
ec2conn,
|
2017-11-21 21:49:38 -05:00
|
|
|
b.config.SSHInterface),
|
2015-06-13 18:16:12 -04:00
|
|
|
SSHConfig: awscommon.SSHConfig(
|
2016-10-23 22:43:47 -04:00
|
|
|
b.config.RunConfig.Comm.SSHAgentAuth,
|
2016-10-02 16:20:36 -04:00
|
|
|
b.config.RunConfig.Comm.SSHUsername,
|
|
|
|
b.config.RunConfig.Comm.SSHPassword),
|
2013-07-20 23:03:00 -04:00
|
|
|
},
|
2013-07-20 23:04:28 -04:00
|
|
|
&common.StepProvision{},
|
2013-07-21 00:00:12 -04:00
|
|
|
&StepUploadX509Cert{},
|
2014-07-24 19:30:30 -04:00
|
|
|
&StepBundleVolume{
|
|
|
|
Debug: b.config.PackerDebug,
|
|
|
|
},
|
|
|
|
&StepUploadBundle{
|
|
|
|
Debug: b.config.PackerDebug,
|
|
|
|
},
|
2015-06-12 14:05:15 -04:00
|
|
|
&awscommon.StepDeregisterAMI{
|
2017-08-14 12:20:08 -04:00
|
|
|
AccessConfig: &b.config.AccessConfig,
|
2016-11-30 16:28:34 -05:00
|
|
|
ForceDeregister: b.config.AMIForceDeregister,
|
|
|
|
ForceDeleteSnapshot: b.config.AMIForceDeleteSnapshot,
|
|
|
|
AMIName: b.config.AMIName,
|
2017-08-14 12:20:08 -04:00
|
|
|
Regions: b.config.AMIRegions,
|
2015-06-12 14:05:15 -04:00
|
|
|
},
|
2017-08-28 12:18:23 -04:00
|
|
|
&StepRegisterAMI{
|
|
|
|
EnableAMISriovNetSupport: b.config.AMISriovNetSupport,
|
|
|
|
EnableAMIENASupport: b.config.AMIENASupport,
|
|
|
|
},
|
2013-09-04 19:06:06 -04:00
|
|
|
&awscommon.StepAMIRegionCopy{
|
2017-06-01 12:28:17 -04:00
|
|
|
AccessConfig: &b.config.AccessConfig,
|
|
|
|
Regions: b.config.AMIRegions,
|
|
|
|
RegionKeyIds: b.config.AMIRegionKMSKeyIDs,
|
|
|
|
EncryptBootVolume: b.config.AMIEncryptBootVolume,
|
|
|
|
Name: b.config.AMIName,
|
2013-09-04 19:06:06 -04:00
|
|
|
},
|
2013-08-22 18:35:47 -04:00
|
|
|
&awscommon.StepModifyAMIAttributes{
|
2016-12-02 03:49:21 -05:00
|
|
|
Description: b.config.AMIDescription,
|
|
|
|
Users: b.config.AMIUsers,
|
|
|
|
Groups: b.config.AMIGroups,
|
|
|
|
ProductCodes: b.config.AMIProductCodes,
|
|
|
|
SnapshotUsers: b.config.SnapshotUsers,
|
|
|
|
SnapshotGroups: b.config.SnapshotGroups,
|
2017-01-10 05:41:28 -05:00
|
|
|
Ctx: b.config.ctx,
|
2013-08-22 18:35:47 -04:00
|
|
|
},
|
2013-08-22 18:11:54 -04:00
|
|
|
&awscommon.StepCreateTags{
|
2016-10-16 22:19:55 -04:00
|
|
|
Tags: b.config.AMITags,
|
|
|
|
SnapshotTags: b.config.SnapshotTags,
|
2017-01-10 05:41:28 -05:00
|
|
|
Ctx: b.config.ctx,
|
2013-08-22 18:03:30 -04:00
|
|
|
},
|
2013-07-20 22:40:45 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Run!
|
2016-09-13 20:04:18 -04:00
|
|
|
b.runner = common.NewRunner(steps, b.config.PackerConfig, ui)
|
2013-07-20 22:40:45 -04:00
|
|
|
b.runner.Run(state)
|
|
|
|
|
|
|
|
// If there was an error, return that
|
2013-08-31 16:03:13 -04:00
|
|
|
if rawErr, ok := state.GetOk("error"); ok {
|
2013-07-20 22:40:45 -04:00
|
|
|
return nil, rawErr.(error)
|
|
|
|
}
|
|
|
|
|
|
|
|
// If there are no AMIs, then just return
|
2013-08-31 16:03:13 -04:00
|
|
|
if _, ok := state.GetOk("amis"); !ok {
|
2013-07-20 22:40:45 -04:00
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
2013-07-25 01:19:04 -04:00
|
|
|
// Build the artifact and return it
|
|
|
|
artifact := &awscommon.Artifact{
|
2013-08-31 16:03:13 -04:00
|
|
|
Amis: state.Get("amis").(map[string]string),
|
2013-07-25 01:19:04 -04:00
|
|
|
BuilderIdValue: BuilderId,
|
2017-12-19 14:04:17 -05:00
|
|
|
Session: session,
|
2013-07-25 01:19:04 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return artifact, nil
|
2013-07-15 02:56:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func (b *Builder) Cancel() {
|
|
|
|
if b.runner != nil {
|
|
|
|
log.Println("Cancelling the step runner...")
|
|
|
|
b.runner.Cancel()
|
|
|
|
}
|
|
|
|
}
|