Use the same vagrant post-processor for amazon instances than EBS. Fixes #502

This commit is contained in:
Jonas Pfenniger 2013-10-05 23:32:41 +01:00
parent 58899f3888
commit c2ff4ded9c
1 changed files with 4 additions and 3 deletions

View File

@ -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 {