Adds support for adding tags to the AMI

This commit is contained in:
James Massara 2013-08-01 16:38:22 -07:00
parent 096a64ad92
commit d6f8411c43
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ func (s *stepCreateAMI) Run(state map[string]interface{}) multistep.StepAction {
// Add tags to AMI
if s.Tags != nil {
ui.Say(fmt.Sprintf("Add tags to AMI (%s)...", createResp.ImageId))
ui.Say(fmt.Sprintf("Adding tags to AMI (%s)...", createResp.ImageId))
amiId := []string{createResp.ImageId}
_, err := ec2conn.CreateTags(amiId, s.Tags)
if err != nil {