packer-cn/examples/azure/ubuntu.json

46 lines
1.2 KiB
JSON
Raw Normal View History

2016-03-10 20:41:28 -05:00
{
"variables": {
"client_id": "{{env `ARM_CLIENT_ID`}}",
"client_secret": "{{env `ARM_CLIENT_SECRET`}}",
"resource_group": "{{env `ARM_RESOURCE_GROUP`}}",
"storage_account": "{{env `ARM_STORAGE_ACCOUNT`}}",
2016-07-08 08:24:07 -04:00
"subscription_id": "{{env `ARM_SUBSCRIPTION_ID`}}"
2016-03-10 20:41:28 -05:00
},
"builders": [{
"type": "azure-arm",
"client_id": "{{user `client_id`}}",
"client_secret": "{{user `client_secret`}}",
"resource_group_name": "{{user `resource_group`}}",
"storage_account": "{{user `storage_account`}}",
"subscription_id": "{{user `subscription_id`}}",
"capture_container_name": "images",
"capture_name_prefix": "packer",
2016-04-21 23:18:51 -04:00
"os_type": "Linux",
2016-03-10 20:41:28 -05:00
"image_publisher": "Canonical",
"image_offer": "UbuntuServer",
2016-04-21 23:18:51 -04:00
"image_sku": "16.04.0-LTS",
2016-03-10 20:41:28 -05:00
2016-07-29 17:17:33 -04:00
"azure_tags": {
"dept": "engineering",
"task": "image deployment"
},
2016-03-10 20:41:28 -05:00
"location": "West US",
"vm_size": "Standard_A2"
}],
"provisioners": [{
"execute_command": "chmod +x {{ .Path }}; {{ .Vars }} sudo -E sh '{{ .Path }}'",
"inline": [
"apt-get update",
"apt-get upgrade -y",
"/usr/sbin/waagent -force -deprovision+user && export HISTSIZE=0 && sync"
],
"inline_shebang": "/bin/sh -x",
"type": "shell"
}]
}