Skip to content

Instantly share code, notes, and snippets.

@trodemaster
Created October 23, 2016 03:31
Show Gist options
  • Save trodemaster/b6dc899ebd30539f5fed294d02599b2a to your computer and use it in GitHub Desktop.
Save trodemaster/b6dc899ebd30539f5fed294d02599b2a to your computer and use it in GitHub Desktop.
{
"variables": {
"blob_webserver": "{{env `BLOB_WEBSERVER`}}"
},
"builders": [
{
"type": "vmware-vmx",
"source_path": "VM/WinSrv2016-vmware-fry/WinSrv2016.vmx",
"communicator": "winrm",
"skip_compaction": "true",
"output_directory": "VM/WinSrv2016-vmware-fried",
"winrm_username": "administrator",
"winrm_password": "PASSWORD",
"shutdown_timeout": "50m",
"shutdown_command": "shutdown /s /t 5 /f /d p:4:1"
}
],
"provisioners": [
{
"environment_vars": "blob_webserver={{user `blob_webserver`}}",
"type": "powershell",
"inline": "write_output ${env:blob_webserver}"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment