145 lines
3.9 KiB
Go
145 lines
3.9 KiB
Go
package common
|
|
|
|
import (
|
|
"fmt"
|
|
"sync"
|
|
|
|
"github.com/aws/aws-sdk-go/aws"
|
|
"github.com/aws/aws-sdk-go/service/ec2"
|
|
|
|
"github.com/hashicorp/packer/packer"
|
|
"github.com/mitchellh/multistep"
|
|
)
|
|
|
|
type StepAMIRegionCopy struct {
|
|
AccessConfig *AccessConfig
|
|
Regions []string
|
|
RegionKeyIds map[string]string
|
|
EncryptBootVolume bool
|
|
Name string
|
|
}
|
|
|
|
func (s *StepAMIRegionCopy) Run(state multistep.StateBag) multistep.StepAction {
|
|
ec2conn := state.Get("ec2").(*ec2.EC2)
|
|
ui := state.Get("ui").(packer.Ui)
|
|
amis := state.Get("amis").(map[string]string)
|
|
snapshots := state.Get("snapshots").(map[string][]string)
|
|
ami := amis[*ec2conn.Config.Region]
|
|
|
|
if len(s.Regions) == 0 {
|
|
return multistep.ActionContinue
|
|
}
|
|
|
|
ui.Say(fmt.Sprintf("Copying AMI (%s) to other regions...", ami))
|
|
|
|
var lock sync.Mutex
|
|
var wg sync.WaitGroup
|
|
var regKeyID string
|
|
errs := new(packer.MultiError)
|
|
for _, region := range s.Regions {
|
|
if region == *ec2conn.Config.Region {
|
|
ui.Message(fmt.Sprintf(
|
|
"Avoiding copying AMI to duplicate region %s", region))
|
|
continue
|
|
}
|
|
|
|
wg.Add(1)
|
|
ui.Message(fmt.Sprintf("Copying to: %s", region))
|
|
|
|
if s.EncryptBootVolume {
|
|
regKeyID = s.RegionKeyIds[region]
|
|
}
|
|
|
|
go func(region string) {
|
|
defer wg.Done()
|
|
id, snapshotIds, err := amiRegionCopy(state, s.AccessConfig, s.Name, ami, region, *ec2conn.Config.Region, regKeyID)
|
|
lock.Lock()
|
|
defer lock.Unlock()
|
|
amis[region] = id
|
|
snapshots[region] = snapshotIds
|
|
if err != nil {
|
|
errs = packer.MultiErrorAppend(errs, err)
|
|
}
|
|
}(region)
|
|
}
|
|
|
|
// TODO(mitchellh): Wait but also allow for cancels to go through...
|
|
ui.Message("Waiting for all copies to complete...")
|
|
wg.Wait()
|
|
|
|
// If there were errors, show them
|
|
if len(errs.Errors) > 0 {
|
|
state.Put("error", errs)
|
|
ui.Error(errs.Error())
|
|
return multistep.ActionHalt
|
|
}
|
|
|
|
state.Put("amis", amis)
|
|
return multistep.ActionContinue
|
|
}
|
|
|
|
func (s *StepAMIRegionCopy) Cleanup(state multistep.StateBag) {
|
|
// No cleanup...
|
|
}
|
|
|
|
// amiRegionCopy does a copy for the given AMI to the target region and
|
|
// returns the resulting ID and snapshot IDs, or error.
|
|
func amiRegionCopy(state multistep.StateBag, config *AccessConfig, name string, imageId string,
|
|
target string, source string, keyID string) (string, []string, error) {
|
|
snapshotIds := []string{}
|
|
isEncrypted := false
|
|
|
|
// Connect to the region where the AMI will be copied to
|
|
session, err := config.Session()
|
|
if err != nil {
|
|
return "", snapshotIds, err
|
|
}
|
|
// if we've provided a map of key ids to regions, use those keys.
|
|
if len(keyID) > 0 {
|
|
isEncrypted = true
|
|
}
|
|
regionconn := ec2.New(session.Copy(&aws.Config{
|
|
Region: aws.String(target)},
|
|
))
|
|
|
|
resp, err := regionconn.CopyImage(&ec2.CopyImageInput{
|
|
SourceRegion: &source,
|
|
SourceImageId: &imageId,
|
|
Name: &name,
|
|
Encrypted: aws.Bool(isEncrypted),
|
|
KmsKeyId: aws.String(keyID),
|
|
})
|
|
|
|
if err != nil {
|
|
return "", snapshotIds, fmt.Errorf("Error Copying AMI (%s) to region (%s): %s",
|
|
imageId, target, err)
|
|
}
|
|
|
|
stateChange := StateChangeConf{
|
|
Pending: []string{"pending"},
|
|
Target: "available",
|
|
Refresh: AMIStateRefreshFunc(regionconn, *resp.ImageId),
|
|
StepState: state,
|
|
}
|
|
|
|
if _, err := WaitForState(&stateChange); err != nil {
|
|
return "", snapshotIds, fmt.Errorf("Error waiting for AMI (%s) in region (%s): %s",
|
|
*resp.ImageId, target, err)
|
|
}
|
|
|
|
// Getting snapshot IDs out of the copied AMI
|
|
describeImageResp, err := regionconn.DescribeImages(&ec2.DescribeImagesInput{ImageIds: []*string{resp.ImageId}})
|
|
if err != nil {
|
|
return "", snapshotIds, fmt.Errorf("Error describing copied AMI (%s) in region (%s): %s",
|
|
imageId, target, err)
|
|
}
|
|
|
|
for _, blockDeviceMapping := range describeImageResp.Images[0].BlockDeviceMappings {
|
|
if blockDeviceMapping.Ebs != nil && blockDeviceMapping.Ebs.SnapshotId != nil {
|
|
snapshotIds = append(snapshotIds, *blockDeviceMapping.Ebs.SnapshotId)
|
|
}
|
|
}
|
|
|
|
return *resp.ImageId, snapshotIds, nil
|
|
}
|