2015-06-08 18:08:39 -04:00
|
|
|
package common
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"github.com/aws/aws-sdk-go/aws"
|
|
|
|
"github.com/aws/aws-sdk-go/service/ec2"
|
|
|
|
"github.com/mitchellh/multistep"
|
|
|
|
"github.com/mitchellh/packer/packer"
|
|
|
|
)
|
|
|
|
|
|
|
|
// StepPreValidate provides an opportunity to pre-validate any configuration for
|
|
|
|
// the build before actually doing any time consuming work
|
|
|
|
//
|
|
|
|
type StepPreValidate struct {
|
2015-06-12 14:05:15 -04:00
|
|
|
DestAmiName string
|
|
|
|
ForceDeregister bool
|
2015-06-08 18:08:39 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *StepPreValidate) Run(state multistep.StateBag) multistep.StepAction {
|
|
|
|
ui := state.Get("ui").(packer.Ui)
|
2015-06-12 14:05:15 -04:00
|
|
|
if s.ForceDeregister {
|
|
|
|
ui.Say("Force Deregister flag found, skipping prevalidating AMI Name")
|
|
|
|
return multistep.ActionContinue
|
|
|
|
}
|
|
|
|
|
|
|
|
ec2conn := state.Get("ec2").(*ec2.EC2)
|
2015-06-08 18:08:39 -04:00
|
|
|
|
|
|
|
ui.Say("Prevalidating AMI Name...")
|
|
|
|
resp, err := ec2conn.DescribeImages(&ec2.DescribeImagesInput{
|
|
|
|
Filters: []*ec2.Filter{&ec2.Filter{
|
|
|
|
Name: aws.String("name"),
|
|
|
|
Values: []*string{aws.String(s.DestAmiName)},
|
|
|
|
}}})
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
err := fmt.Errorf("Error querying AMI: %s", err)
|
|
|
|
state.Put("error", err)
|
|
|
|
ui.Error(err.Error())
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(resp.Images) > 0 {
|
2015-08-17 20:44:01 -04:00
|
|
|
err := fmt.Errorf("Error: name conflicts with an existing AMI: %s", *resp.Images[0].ImageId)
|
2015-06-08 18:08:39 -04:00
|
|
|
state.Put("error", err)
|
|
|
|
ui.Error(err.Error())
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
|
|
|
|
return multistep.ActionContinue
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *StepPreValidate) Cleanup(multistep.StateBag) {}
|