builder/amazon: region copy must go before modify attributes

/cc @jmassara - This has to go before the modify attributes so that
the attributes are properly modified on all resulting AMIs.
This commit is contained in:
Mitchell Hashimoto
2013-08-22 15:03:30 -07:00
parent a4f674f8ed
commit ef142ce886
3 changed files with 11 additions and 11 deletions
+4 -4
View File
@@ -211,6 +211,10 @@ func (b *Builder) Run(ui packer.Ui, hook packer.Hook, cache packer.Cache) (packe
&StepBundleVolume{},
&StepUploadBundle{},
&StepRegisterAMI{},
&awscommon.StepAMIRegionCopy{
Regions: b.config.AMIRegions,
Tags: b.config.Tags,
},
&awscommon.StepCreateTags{Tags: b.config.Tags},
&awscommon.StepModifyAMIAttributes{
Description: b.config.AMIDescription,
@@ -218,10 +222,6 @@ func (b *Builder) Run(ui packer.Ui, hook packer.Hook, cache packer.Cache) (packe
Groups: b.config.AMIGroups,
ProductCodes: b.config.AMIProductCodes,
},
&awscommon.StepAMIRegionCopyAttributes{
Regions: b.config.AMIRegions,
Tags: b.config.Tags,
},
}
// Run!