blob: fa8816ec5a81af6ff3249078d9783f6650fbbec5 [file] [log] [blame]
{
"variables": {
"base_box_ovf": "{{env `UBUNTU_OVF`}}",
"cloud_token": "{{env `VAGRANT_CLOUD_TOKEN`}}",
"version": "{{env `BOX_VERSION`}}"
},
"builders": [{
"type": "virtualbox-ovf",
"source_path": "{{user `base_box_ovf`}}",
"ssh_username": "vagrant",
"ssh_password": "vagrant",
"shutdown_command": "echo 'vagrant' | sudo -S shutdown -P now",
"headless": true,
"vboxmanage": [
["modifyvm", "{{.Name}}", "--memory", "4096"],
["modifyvm", "{{.Name}}", "--cpus", "2"]
]
}],
"provisioners": [{
"type": "shell",
"execute_command": "echo 'vagrant' | {{.Vars}} sudo -S -E bash '{{.Path}}'",
"scripts": [
"build.sh"
]
}],
"post-processors": [[
{
"type": "vagrant"
},
{
"type": "vagrant-cloud",
"box_tag": "apache-aurora/dev-environment",
"access_token": "{{user `cloud_token`}}",
"version": "{{user `version`}}"
}
]
]
}