From a30426731f12db2863b8af39b8ac4de32279e8ed Mon Sep 17 00:00:00 2001 From: Jonas Pfenniger Date: Sat, 5 Oct 2013 23:32:41 +0100 Subject: [PATCH] Use the same vagrant post-processor for amazon instances than EBS. Fixes #502 --- post-processor/vagrant/post-processor.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/post-processor/vagrant/post-processor.go b/post-processor/vagrant/post-processor.go index 91969e558..8aa44d9fb 100644 --- a/post-processor/vagrant/post-processor.go +++ b/post-processor/vagrant/post-processor.go @@ -12,9 +12,10 @@ import ( ) var builtins = map[string]string{ - "mitchellh.amazonebs": "aws", - "mitchellh.virtualbox": "virtualbox", - "mitchellh.vmware": "vmware", + "mitchellh.amazonebs": "aws", + "mitchellh.amazon.instance": "aws", + "mitchellh.virtualbox": "virtualbox", + "mitchellh.vmware": "vmware", } type Config struct {