update changelog

This commit is contained in:
Matthew Hooker 2018-04-05 16:32:03 -07:00
parent cb90e8b375
commit f094b3be85
No known key found for this signature in database
GPG Key ID: 7B5F933D9CE8C6A1
2 changed files with 8 additions and 1 deletions

View File

@ -1,8 +1,15 @@
## (UNRELEASED)
### BUG FIXES:
* post-processor/vagrant: Large VMDKs should no longer show a 0-byte size on OS X. [GH-6084]
### IMPROVEMENTS:
* builder/amazon: Setting `force_delete` will only delete AMIs owned by the
user. This should prevent failures where we try to delete an AMI with
a matching name, but owned by someone else. [GH-6111]
## 1.2.2 (March 26, 2018)
### BUG FIXES:

View File

@ -44,7 +44,7 @@ func (s *StepDeregisterAMI) Run(_ context.Context, state multistep.StateBag) mul
Owners: aws.StringSlice([]string{"self"}),
Filters: []*ec2.Filter{{
Name: aws.String("name"),
Values: []*string{aws.String(s.AMIName)},
Values: aws.StringSlice([]string{s.AMIName}),
}}})
if err != nil {