2019-05-03 17:47:09 -04:00
|
|
|
package common
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"context"
|
|
|
|
"fmt"
|
2019-07-12 17:59:11 -04:00
|
|
|
"sync"
|
2019-05-03 17:47:09 -04:00
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/aws/aws-sdk-go/aws"
|
|
|
|
"github.com/aws/aws-sdk-go/aws/request"
|
|
|
|
"github.com/aws/aws-sdk-go/service/ec2"
|
|
|
|
"github.com/aws/aws-sdk-go/service/ec2/ec2iface"
|
2019-08-23 05:17:45 -04:00
|
|
|
"github.com/hashicorp/packer/helper/config"
|
2019-05-03 17:47:09 -04:00
|
|
|
"github.com/hashicorp/packer/helper/multistep"
|
|
|
|
"github.com/hashicorp/packer/packer"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Define a mock struct to be used in unit tests for common aws steps.
|
|
|
|
type mockEC2Conn struct {
|
|
|
|
ec2iface.EC2API
|
|
|
|
Config *aws.Config
|
|
|
|
|
|
|
|
// Counters to figure out what code path was taken
|
|
|
|
copyImageCount int
|
|
|
|
describeImagesCount int
|
|
|
|
deregisterImageCount int
|
|
|
|
deleteSnapshotCount int
|
|
|
|
waitCount int
|
2019-07-12 17:59:11 -04:00
|
|
|
|
|
|
|
lock sync.Mutex
|
2019-05-03 17:47:09 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m *mockEC2Conn) CopyImage(copyInput *ec2.CopyImageInput) (*ec2.CopyImageOutput, error) {
|
2019-07-12 17:59:11 -04:00
|
|
|
m.lock.Lock()
|
2019-05-03 17:47:09 -04:00
|
|
|
m.copyImageCount++
|
2019-07-12 17:59:11 -04:00
|
|
|
m.lock.Unlock()
|
2019-05-03 17:47:09 -04:00
|
|
|
copiedImage := fmt.Sprintf("%s-copied-%d", *copyInput.SourceImageId, m.copyImageCount)
|
|
|
|
output := &ec2.CopyImageOutput{
|
|
|
|
ImageId: &copiedImage,
|
|
|
|
}
|
|
|
|
return output, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// functions we have to create mock responses for in order for test to run
|
|
|
|
func (m *mockEC2Conn) DescribeImages(*ec2.DescribeImagesInput) (*ec2.DescribeImagesOutput, error) {
|
2019-07-12 17:59:11 -04:00
|
|
|
m.lock.Lock()
|
2019-05-03 17:47:09 -04:00
|
|
|
m.describeImagesCount++
|
2019-07-12 17:59:11 -04:00
|
|
|
m.lock.Unlock()
|
2019-05-03 17:47:09 -04:00
|
|
|
output := &ec2.DescribeImagesOutput{
|
|
|
|
Images: []*ec2.Image{{}},
|
|
|
|
}
|
|
|
|
return output, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *mockEC2Conn) DeregisterImage(*ec2.DeregisterImageInput) (*ec2.DeregisterImageOutput, error) {
|
2019-07-12 17:59:11 -04:00
|
|
|
m.lock.Lock()
|
2019-05-03 17:47:09 -04:00
|
|
|
m.deregisterImageCount++
|
2019-07-12 17:59:11 -04:00
|
|
|
m.lock.Unlock()
|
2019-05-03 17:47:09 -04:00
|
|
|
output := &ec2.DeregisterImageOutput{}
|
|
|
|
return output, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *mockEC2Conn) DeleteSnapshot(*ec2.DeleteSnapshotInput) (*ec2.DeleteSnapshotOutput, error) {
|
2019-07-12 17:59:11 -04:00
|
|
|
m.lock.Lock()
|
2019-05-03 17:47:09 -04:00
|
|
|
m.deleteSnapshotCount++
|
2019-07-12 17:59:11 -04:00
|
|
|
m.lock.Unlock()
|
2019-05-03 17:47:09 -04:00
|
|
|
output := &ec2.DeleteSnapshotOutput{}
|
|
|
|
return output, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *mockEC2Conn) WaitUntilImageAvailableWithContext(aws.Context, *ec2.DescribeImagesInput, ...request.WaiterOption) error {
|
2019-07-12 17:59:11 -04:00
|
|
|
m.lock.Lock()
|
2019-05-03 17:47:09 -04:00
|
|
|
m.waitCount++
|
2019-07-12 17:59:11 -04:00
|
|
|
m.lock.Unlock()
|
2019-05-03 17:47:09 -04:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func getMockConn(config *AccessConfig, target string) (ec2iface.EC2API, error) {
|
|
|
|
mockConn := &mockEC2Conn{
|
|
|
|
Config: aws.NewConfig(),
|
|
|
|
}
|
|
|
|
|
|
|
|
return mockConn, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create statebag for running test
|
|
|
|
func tState() multistep.StateBag {
|
|
|
|
state := new(multistep.BasicStateBag)
|
|
|
|
state.Put("ui", &packer.BasicUi{
|
|
|
|
Reader: new(bytes.Buffer),
|
|
|
|
Writer: new(bytes.Buffer),
|
|
|
|
})
|
|
|
|
state.Put("amis", map[string]string{"us-east-1": "ami-12345"})
|
|
|
|
state.Put("snapshots", map[string][]string{"us-east-1": {"snap-0012345"}})
|
|
|
|
conn, _ := getMockConn(&AccessConfig{}, "us-east-2")
|
|
|
|
state.Put("ec2", conn)
|
|
|
|
return state
|
|
|
|
}
|
|
|
|
|
2019-07-12 17:59:11 -04:00
|
|
|
func TestStepAMIRegionCopy_duplicates(t *testing.T) {
|
|
|
|
// ------------------------------------------------------------------------
|
|
|
|
// Test that if the original region is added to both Regions and Region,
|
|
|
|
// the ami is only copied once (with encryption).
|
|
|
|
// ------------------------------------------------------------------------
|
|
|
|
|
2019-05-03 17:47:09 -04:00
|
|
|
stepAMIRegionCopy := StepAMIRegionCopy{
|
2019-07-12 17:59:11 -04:00
|
|
|
AccessConfig: testAccessConfig(),
|
|
|
|
Regions: []string{"us-east-1"},
|
|
|
|
AMIKmsKeyId: "12345",
|
|
|
|
// Original region key in regionkeyids is different than in amikmskeyid
|
|
|
|
RegionKeyIds: map[string]string{"us-east-1": "12345"},
|
2019-08-23 05:17:45 -04:00
|
|
|
EncryptBootVolume: config.TriTrue,
|
2019-05-03 17:47:09 -04:00
|
|
|
Name: "fake-ami-name",
|
|
|
|
OriginalRegion: "us-east-1",
|
|
|
|
}
|
|
|
|
// mock out the region connection code
|
|
|
|
stepAMIRegionCopy.getRegionConn = getMockConn
|
|
|
|
|
|
|
|
state := tState()
|
2019-07-12 17:59:11 -04:00
|
|
|
state.Put("intermediary_image", true)
|
2019-05-03 17:47:09 -04:00
|
|
|
stepAMIRegionCopy.Run(context.Background(), state)
|
|
|
|
|
2019-07-12 17:59:11 -04:00
|
|
|
if len(stepAMIRegionCopy.Regions) != 1 {
|
|
|
|
t.Fatalf("Should have added original ami to Regions one time only")
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------
|
|
|
|
// Both Region and Regions set, but no encryption - shouldn't copy anything
|
|
|
|
// ------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// the ami is only copied once.
|
|
|
|
stepAMIRegionCopy = StepAMIRegionCopy{
|
|
|
|
AccessConfig: testAccessConfig(),
|
|
|
|
Regions: []string{"us-east-1"},
|
|
|
|
Name: "fake-ami-name",
|
|
|
|
OriginalRegion: "us-east-1",
|
2019-05-03 17:47:09 -04:00
|
|
|
}
|
2019-07-12 17:59:11 -04:00
|
|
|
// mock out the region connection code
|
|
|
|
state.Put("intermediary_image", false)
|
|
|
|
stepAMIRegionCopy.getRegionConn = getMockConn
|
|
|
|
stepAMIRegionCopy.Run(context.Background(), state)
|
|
|
|
|
2019-06-17 18:38:28 -04:00
|
|
|
if len(stepAMIRegionCopy.Regions) != 0 {
|
2019-07-12 17:59:11 -04:00
|
|
|
t.Fatalf("Should not have added original ami to Regions; not encrypting")
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------
|
|
|
|
// Both Region and Regions set, but no encryption - shouldn't copy anything,
|
|
|
|
// this tests false as opposed to nil value above.
|
|
|
|
// ------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// the ami is only copied once.
|
|
|
|
stepAMIRegionCopy = StepAMIRegionCopy{
|
|
|
|
AccessConfig: testAccessConfig(),
|
|
|
|
Regions: []string{"us-east-1"},
|
2019-08-23 05:17:45 -04:00
|
|
|
EncryptBootVolume: config.TriFalse,
|
2019-07-12 17:59:11 -04:00
|
|
|
Name: "fake-ami-name",
|
|
|
|
OriginalRegion: "us-east-1",
|
|
|
|
}
|
|
|
|
// mock out the region connection code
|
|
|
|
state.Put("intermediary_image", false)
|
|
|
|
stepAMIRegionCopy.getRegionConn = getMockConn
|
|
|
|
stepAMIRegionCopy.Run(context.Background(), state)
|
|
|
|
|
|
|
|
if len(stepAMIRegionCopy.Regions) != 0 {
|
|
|
|
t.Fatalf("Should not have added original ami to Regions once; not" +
|
|
|
|
"encrypting")
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------
|
|
|
|
// Multiple regions, many duplicates, and encryption (this shouldn't ever
|
|
|
|
// happen because of our template validation, but good to test it.)
|
|
|
|
// ------------------------------------------------------------------------
|
|
|
|
|
|
|
|
stepAMIRegionCopy = StepAMIRegionCopy{
|
|
|
|
AccessConfig: testAccessConfig(),
|
|
|
|
// Many duplicates for only 3 actual values
|
|
|
|
Regions: []string{"us-east-1", "us-west-2", "us-west-2", "ap-east-1", "ap-east-1", "ap-east-1"},
|
|
|
|
AMIKmsKeyId: "IlikePancakes",
|
|
|
|
// Original region key in regionkeyids is different than in amikmskeyid
|
|
|
|
RegionKeyIds: map[string]string{"us-east-1": "12345", "us-west-2": "abcde", "ap-east-1": "xyz"},
|
2019-08-23 05:17:45 -04:00
|
|
|
EncryptBootVolume: config.TriTrue,
|
2019-07-12 17:59:11 -04:00
|
|
|
Name: "fake-ami-name",
|
|
|
|
OriginalRegion: "us-east-1",
|
|
|
|
}
|
|
|
|
// mock out the region connection code
|
|
|
|
stepAMIRegionCopy.getRegionConn = getMockConn
|
|
|
|
state.Put("intermediary_image", true)
|
|
|
|
stepAMIRegionCopy.Run(context.Background(), state)
|
|
|
|
|
|
|
|
if len(stepAMIRegionCopy.Regions) != 3 {
|
|
|
|
t.Fatalf("Each AMI should have been added to Regions one time only.")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Also verify that we respect RegionKeyIds over AMIKmsKeyIds:
|
|
|
|
if stepAMIRegionCopy.RegionKeyIds["us-east-1"] != "12345" {
|
|
|
|
t.Fatalf("RegionKeyIds should take precedence over AmiKmsKeyIds")
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------
|
|
|
|
// Multiple regions, many duplicates, NO encryption
|
|
|
|
// ------------------------------------------------------------------------
|
|
|
|
|
|
|
|
stepAMIRegionCopy = StepAMIRegionCopy{
|
|
|
|
AccessConfig: testAccessConfig(),
|
|
|
|
// Many duplicates for only 3 actual values
|
|
|
|
Regions: []string{"us-east-1", "us-west-2", "us-west-2", "ap-east-1", "ap-east-1", "ap-east-1"},
|
|
|
|
Name: "fake-ami-name",
|
|
|
|
OriginalRegion: "us-east-1",
|
|
|
|
}
|
|
|
|
// mock out the region connection code
|
|
|
|
stepAMIRegionCopy.getRegionConn = getMockConn
|
|
|
|
state.Put("intermediary_image", false)
|
|
|
|
stepAMIRegionCopy.Run(context.Background(), state)
|
|
|
|
|
|
|
|
if len(stepAMIRegionCopy.Regions) != 2 {
|
|
|
|
t.Fatalf("Each AMI should have been added to Regions one time only, " +
|
|
|
|
"and original region shouldn't be added at all")
|
2019-05-03 17:47:09 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-12 17:59:11 -04:00
|
|
|
func TestStepAmiRegionCopy_nil_encryption(t *testing.T) {
|
2019-05-03 17:47:09 -04:00
|
|
|
// create step
|
|
|
|
stepAMIRegionCopy := StepAMIRegionCopy{
|
|
|
|
AccessConfig: testAccessConfig(),
|
|
|
|
Regions: make([]string, 0),
|
|
|
|
AMIKmsKeyId: "",
|
|
|
|
RegionKeyIds: make(map[string]string),
|
2019-08-23 05:17:45 -04:00
|
|
|
EncryptBootVolume: config.TriUnset,
|
2019-05-03 17:47:09 -04:00
|
|
|
Name: "fake-ami-name",
|
|
|
|
OriginalRegion: "us-east-1",
|
|
|
|
}
|
|
|
|
// mock out the region connection code
|
|
|
|
stepAMIRegionCopy.getRegionConn = getMockConn
|
|
|
|
|
|
|
|
state := tState()
|
2019-07-12 17:59:11 -04:00
|
|
|
state.Put("intermediary_image", false)
|
2019-05-03 17:47:09 -04:00
|
|
|
stepAMIRegionCopy.Run(context.Background(), state)
|
|
|
|
|
2019-07-12 17:59:11 -04:00
|
|
|
if stepAMIRegionCopy.toDelete != "" {
|
|
|
|
t.Fatalf("Shouldn't have an intermediary ami if encrypt is nil")
|
2019-05-03 17:47:09 -04:00
|
|
|
}
|
2019-07-12 17:59:11 -04:00
|
|
|
if len(stepAMIRegionCopy.Regions) != 0 {
|
|
|
|
t.Fatalf("Should not have added original ami to original region")
|
2019-05-03 17:47:09 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestStepAmiRegionCopy_true_encryption(t *testing.T) {
|
|
|
|
// create step
|
|
|
|
stepAMIRegionCopy := StepAMIRegionCopy{
|
|
|
|
AccessConfig: testAccessConfig(),
|
|
|
|
Regions: make([]string, 0),
|
|
|
|
AMIKmsKeyId: "",
|
|
|
|
RegionKeyIds: make(map[string]string),
|
2019-08-23 05:17:45 -04:00
|
|
|
EncryptBootVolume: config.TriTrue,
|
2019-05-03 17:47:09 -04:00
|
|
|
Name: "fake-ami-name",
|
|
|
|
OriginalRegion: "us-east-1",
|
|
|
|
}
|
|
|
|
// mock out the region connection code
|
|
|
|
stepAMIRegionCopy.getRegionConn = getMockConn
|
|
|
|
|
|
|
|
state := tState()
|
2019-07-12 17:59:11 -04:00
|
|
|
state.Put("intermediary_image", true)
|
2019-05-03 17:47:09 -04:00
|
|
|
stepAMIRegionCopy.Run(context.Background(), state)
|
|
|
|
|
|
|
|
if stepAMIRegionCopy.toDelete == "" {
|
|
|
|
t.Fatalf("Should delete original AMI if encrypted=true")
|
|
|
|
}
|
|
|
|
if len(stepAMIRegionCopy.Regions) == 0 {
|
|
|
|
t.Fatalf("Should have added original ami to Regions")
|
|
|
|
}
|
|
|
|
}
|
2019-06-17 18:04:19 -04:00
|
|
|
|
2019-07-29 15:11:59 -04:00
|
|
|
func TestStepAmiRegionCopy_nil_intermediary(t *testing.T) {
|
|
|
|
// create step
|
|
|
|
stepAMIRegionCopy := StepAMIRegionCopy{
|
|
|
|
AccessConfig: testAccessConfig(),
|
|
|
|
Regions: make([]string, 0),
|
|
|
|
AMIKmsKeyId: "",
|
|
|
|
RegionKeyIds: make(map[string]string),
|
2019-08-23 05:17:45 -04:00
|
|
|
EncryptBootVolume: config.TriFalse,
|
2019-07-29 15:11:59 -04:00
|
|
|
Name: "fake-ami-name",
|
|
|
|
OriginalRegion: "us-east-1",
|
|
|
|
}
|
|
|
|
// mock out the region connection code
|
|
|
|
stepAMIRegionCopy.getRegionConn = getMockConn
|
|
|
|
|
|
|
|
state := tState()
|
|
|
|
stepAMIRegionCopy.Run(context.Background(), state)
|
|
|
|
|
|
|
|
if stepAMIRegionCopy.toDelete != "" {
|
|
|
|
t.Fatalf("Should not delete original AMI if no intermediary")
|
|
|
|
}
|
|
|
|
if len(stepAMIRegionCopy.Regions) != 0 {
|
|
|
|
t.Fatalf("Should not have added original ami to Regions")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-12 17:59:11 -04:00
|
|
|
func TestStepAmiRegionCopy_AMISkipBuildRegion(t *testing.T) {
|
|
|
|
// ------------------------------------------------------------------------
|
|
|
|
// skip build region is true
|
|
|
|
// ------------------------------------------------------------------------
|
|
|
|
|
2019-06-17 18:04:19 -04:00
|
|
|
stepAMIRegionCopy := StepAMIRegionCopy{
|
|
|
|
AccessConfig: testAccessConfig(),
|
2019-07-12 17:59:11 -04:00
|
|
|
Regions: []string{"us-west-1"},
|
2019-06-17 18:04:19 -04:00
|
|
|
AMIKmsKeyId: "",
|
2019-07-12 17:59:11 -04:00
|
|
|
RegionKeyIds: map[string]string{"us-west-1": "abcde"},
|
2019-06-17 18:04:19 -04:00
|
|
|
Name: "fake-ami-name",
|
|
|
|
OriginalRegion: "us-east-1",
|
|
|
|
AMISkipBuildRegion: true,
|
|
|
|
}
|
|
|
|
// mock out the region connection code
|
|
|
|
stepAMIRegionCopy.getRegionConn = getMockConn
|
|
|
|
|
|
|
|
state := tState()
|
2019-07-12 17:59:11 -04:00
|
|
|
state.Put("intermediary_image", true)
|
2019-06-17 18:04:19 -04:00
|
|
|
stepAMIRegionCopy.Run(context.Background(), state)
|
|
|
|
|
|
|
|
if stepAMIRegionCopy.toDelete == "" {
|
|
|
|
t.Fatalf("Should delete original AMI if skip_save_build_region=true")
|
|
|
|
}
|
2019-07-12 17:59:11 -04:00
|
|
|
if len(stepAMIRegionCopy.Regions) != 1 {
|
|
|
|
t.Fatalf("Should not have added original ami to Regions; Regions: %#v", stepAMIRegionCopy.Regions)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------
|
|
|
|
// skip build region is false.
|
|
|
|
// ------------------------------------------------------------------------
|
|
|
|
stepAMIRegionCopy = StepAMIRegionCopy{
|
|
|
|
AccessConfig: testAccessConfig(),
|
|
|
|
Regions: []string{"us-west-1"},
|
|
|
|
AMIKmsKeyId: "",
|
|
|
|
RegionKeyIds: make(map[string]string),
|
|
|
|
Name: "fake-ami-name",
|
|
|
|
OriginalRegion: "us-east-1",
|
|
|
|
AMISkipBuildRegion: false,
|
|
|
|
}
|
|
|
|
// mock out the region connection code
|
|
|
|
stepAMIRegionCopy.getRegionConn = getMockConn
|
|
|
|
|
|
|
|
state.Put("intermediary_image", false) // not encrypted
|
|
|
|
stepAMIRegionCopy.Run(context.Background(), state)
|
|
|
|
|
|
|
|
if stepAMIRegionCopy.toDelete != "" {
|
|
|
|
t.Fatalf("Shouldn't have an intermediary AMI, so dont delete original ami")
|
|
|
|
}
|
|
|
|
if len(stepAMIRegionCopy.Regions) != 1 {
|
|
|
|
t.Fatalf("Should not have added original ami to Regions; Regions: %#v", stepAMIRegionCopy.Regions)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------
|
|
|
|
// skip build region is false, but encrypt is true
|
|
|
|
// ------------------------------------------------------------------------
|
|
|
|
stepAMIRegionCopy = StepAMIRegionCopy{
|
|
|
|
AccessConfig: testAccessConfig(),
|
|
|
|
Regions: []string{"us-west-1"},
|
|
|
|
AMIKmsKeyId: "",
|
|
|
|
RegionKeyIds: map[string]string{"us-west-1": "abcde"},
|
|
|
|
Name: "fake-ami-name",
|
|
|
|
OriginalRegion: "us-east-1",
|
|
|
|
AMISkipBuildRegion: false,
|
2019-08-23 05:17:45 -04:00
|
|
|
EncryptBootVolume: config.TriTrue,
|
2019-07-12 17:59:11 -04:00
|
|
|
}
|
|
|
|
// mock out the region connection code
|
|
|
|
stepAMIRegionCopy.getRegionConn = getMockConn
|
|
|
|
|
|
|
|
state.Put("intermediary_image", true) //encrypted
|
|
|
|
stepAMIRegionCopy.Run(context.Background(), state)
|
|
|
|
|
|
|
|
if stepAMIRegionCopy.toDelete == "" {
|
|
|
|
t.Fatalf("Have to delete intermediary AMI")
|
|
|
|
}
|
|
|
|
if len(stepAMIRegionCopy.Regions) != 2 {
|
|
|
|
t.Fatalf("Should have added original ami to Regions; Regions: %#v", stepAMIRegionCopy.Regions)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------
|
|
|
|
// skip build region is true, and encrypt is true
|
|
|
|
// ------------------------------------------------------------------------
|
|
|
|
stepAMIRegionCopy = StepAMIRegionCopy{
|
|
|
|
AccessConfig: testAccessConfig(),
|
|
|
|
Regions: []string{"us-west-1"},
|
|
|
|
AMIKmsKeyId: "",
|
|
|
|
RegionKeyIds: map[string]string{"us-west-1": "abcde"},
|
|
|
|
Name: "fake-ami-name",
|
|
|
|
OriginalRegion: "us-east-1",
|
|
|
|
AMISkipBuildRegion: true,
|
2019-08-23 05:17:45 -04:00
|
|
|
EncryptBootVolume: config.TriTrue,
|
2019-07-12 17:59:11 -04:00
|
|
|
}
|
|
|
|
// mock out the region connection code
|
|
|
|
stepAMIRegionCopy.getRegionConn = getMockConn
|
|
|
|
|
|
|
|
state.Put("intermediary_image", true) //encrypted
|
|
|
|
stepAMIRegionCopy.Run(context.Background(), state)
|
|
|
|
|
|
|
|
if stepAMIRegionCopy.toDelete == "" {
|
|
|
|
t.Fatalf("Have to delete intermediary AMI")
|
|
|
|
}
|
|
|
|
if len(stepAMIRegionCopy.Regions) != 1 {
|
|
|
|
t.Fatalf("Should not have added original ami to Regions; Regions: %#v", stepAMIRegionCopy.Regions)
|
2019-06-17 18:04:19 -04:00
|
|
|
}
|
|
|
|
}
|