2013-08-09 01:50:23 -04:00
|
|
|
package common
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2014-06-04 17:58:11 -04:00
|
|
|
|
2015-05-27 14:35:56 -04:00
|
|
|
"github.com/mitchellh/packer/template/interpolate"
|
2013-08-09 01:50:23 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
// AMIConfig is for common configuration related to creating AMIs.
|
|
|
|
type AMIConfig struct {
|
2016-06-06 14:37:09 -04:00
|
|
|
AMIName string `mapstructure:"ami_name"`
|
|
|
|
AMIDescription string `mapstructure:"ami_description"`
|
|
|
|
AMIVirtType string `mapstructure:"ami_virtualization_type"`
|
|
|
|
AMIUsers []string `mapstructure:"ami_users"`
|
|
|
|
AMIGroups []string `mapstructure:"ami_groups"`
|
|
|
|
AMIProductCodes []string `mapstructure:"ami_product_codes"`
|
|
|
|
AMIRegions []string `mapstructure:"ami_regions"`
|
|
|
|
AMISkipRegionValidation bool `mapstructure:"skip_region_validation"`
|
|
|
|
AMITags map[string]string `mapstructure:"tags"`
|
|
|
|
AMIEnhancedNetworking bool `mapstructure:"enhanced_networking"`
|
|
|
|
AMIForceDeregister bool `mapstructure:"force_deregister"`
|
2016-11-30 16:28:34 -05:00
|
|
|
AMIForceDeleteSnapshot bool `mapstructure:"force_delete_snapshot"`
|
2016-03-23 13:35:47 -04:00
|
|
|
AMIEncryptBootVolume bool `mapstructure:"encrypt_boot"`
|
2016-10-18 08:30:38 -04:00
|
|
|
AMIKmsKeyId string `mapstructure:"kms_key_id"`
|
2016-10-16 22:19:55 -04:00
|
|
|
SnapshotTags map[string]string `mapstructure:"snapshot_tags"`
|
2016-12-02 03:49:21 -05:00
|
|
|
SnapshotUsers []string `mapstructure:"snapshot_users"`
|
|
|
|
SnapshotGroups []string `mapstructure:"snapshot_groups"`
|
2013-08-09 01:50:23 -04:00
|
|
|
}
|
|
|
|
|
2015-05-27 14:35:56 -04:00
|
|
|
func (c *AMIConfig) Prepare(ctx *interpolate.Context) []error {
|
|
|
|
var errs []error
|
2013-08-09 01:50:23 -04:00
|
|
|
if c.AMIName == "" {
|
|
|
|
errs = append(errs, fmt.Errorf("ami_name must be specified"))
|
|
|
|
}
|
|
|
|
|
2013-08-21 21:44:14 -04:00
|
|
|
if len(c.AMIRegions) > 0 {
|
2013-08-22 17:58:21 -04:00
|
|
|
regionSet := make(map[string]struct{})
|
|
|
|
regions := make([]string, 0, len(c.AMIRegions))
|
|
|
|
|
2013-08-21 21:44:14 -04:00
|
|
|
for _, region := range c.AMIRegions {
|
2013-08-22 17:58:21 -04:00
|
|
|
// If we already saw the region, then don't look again
|
|
|
|
if _, ok := regionSet[region]; ok {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// Mark that we saw the region
|
|
|
|
regionSet[region] = struct{}{}
|
|
|
|
|
2016-06-07 09:21:43 -04:00
|
|
|
if !c.AMISkipRegionValidation {
|
|
|
|
// Verify the region is real
|
2017-03-28 21:29:55 -04:00
|
|
|
if valid := ValidateRegion(region); !valid {
|
2016-06-06 14:17:12 -04:00
|
|
|
errs = append(errs, fmt.Errorf("Unknown region: %s", region))
|
|
|
|
continue
|
|
|
|
}
|
2013-08-21 21:44:14 -04:00
|
|
|
}
|
2013-08-22 17:58:21 -04:00
|
|
|
|
|
|
|
regions = append(regions, region)
|
2013-08-21 21:44:14 -04:00
|
|
|
}
|
2013-08-22 17:58:21 -04:00
|
|
|
|
|
|
|
c.AMIRegions = regions
|
2013-08-21 21:44:14 -04:00
|
|
|
}
|
|
|
|
|
2016-12-04 09:14:53 -05:00
|
|
|
if len(c.AMIUsers) > 0 && c.AMIEncryptBootVolume {
|
|
|
|
errs = append(errs, fmt.Errorf("Cannot share AMI with encrypted boot volume"))
|
2016-05-12 12:21:44 -04:00
|
|
|
}
|
|
|
|
|
2016-12-04 14:18:27 -05:00
|
|
|
if len(c.SnapshotUsers) > 0 && len(c.AMIKmsKeyId) == 0 && c.AMIEncryptBootVolume {
|
|
|
|
errs = append(errs, fmt.Errorf("Cannot share snapshot encrypted with default KMS key"))
|
|
|
|
}
|
|
|
|
|
2013-08-09 01:50:23 -04:00
|
|
|
if len(errs) > 0 {
|
|
|
|
return errs
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|