Packer post-processor plugin to produce Virtual Hard Disk (VHD) files.
VHD files can be used with the following hypervisors:
- Hyper-V
 - VMWare
 - VirtualBox
 - XenServer
 
packer-post-processor-vhd supports converting VirtualBox and QEMU images to VHDs. It can be used as a post-processor for artifacts from both builders.
- Packer 0.7+
 - VirtualBox (
VBoxManage) is required to convert VirtualBox artifacts. - QEMU (
qemu-img) is required to convert QEMU artifacts. 
Add a post-processor declaration to your Packer template:
{
  "post-processors": [
    {
      "type": "vhd",
      "only": ["virtualbox-iso"],
    }
  ]
}packer-post-processor-vhd supports the following optional configuration items:
- 
output(string)The path to the VHD file. This is a configuration template. The template supports the following variables:
- 
{{ .BuildName }}Replaced by the name of the builder (e.g.,
virtualbox-isoor a customname). - 
{{ .Provider }}Replaced by the input artifact provider (e.g.,
virtualbox). - 
{{ .ArtifactId }}Replaced by the ID of the input artifact.
 
Defaults to
packer_{{ .BuildName }}_{{ .Provider }}.vhd. - 
 - 
force(boolean)Whether to overwrite a pre-existing VHD file at
outputif it exists. Specifying--forceon the command line has the same effect. Defaults tofalse. - 
keep_input_artifact(boolean)Whether to keep the input artifact (e.g., VirtualBox image) after processing. Defaults to
false. 
- 
Download the latest release.
 - 
Rename the plugin
packer-post-processor-vhd. - 
Copy the binary to your Packer plugins directory.
- 
Linux and Mac OS X:
~/packer.d/plugins - 
Windows:
%APPDATA%\packer.d\plugins 
 - 
 
- 
Install the Go toolchain, then install the package:
go get github.com/benwebber/packer-post-processor-vhd go install github.com/benwebber/packer-post-processor-vhd - 
Copy the binary to your Packer plugins directory.
- 
Linux and Mac OS X:
cp $GOPATH/bin/packer-post-processor-vhd ~/packer.d/plugins - 
Windows:
Copy-Item %GOPATH%\bin\packer-post-processor-vhd %APPDATA%\packer.d\plugins 
 -