36 lines
987 B
JSON
36 lines
987 B
JSON
|
{
|
||
|
"variables": {
|
||
|
"resource_group": "{{env `ARM_RESOURCE_GROUP`}}",
|
||
|
"storage_account": "{{env `ARM_STORAGE_ACCOUNT`}}",
|
||
|
"subscription_id": "{{env `ARM_SUBSCRIPTION_ID`}}"
|
||
|
},
|
||
|
"builders": [{
|
||
|
"type": "azure-arm",
|
||
|
|
||
|
"resource_group_name": "{{user `resource_group`}}",
|
||
|
"storage_account": "{{user `storage_account`}}",
|
||
|
"subscription_id": "{{user `subscription_id`}}",
|
||
|
|
||
|
"capture_container_name": "images",
|
||
|
"capture_name_prefix": "packer",
|
||
|
|
||
|
"os_type": "Linux",
|
||
|
"image_publisher": "Canonical",
|
||
|
"image_offer": "UbuntuServer",
|
||
|
"image_sku": "16.04.0-LTS",
|
||
|
|
||
|
"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"
|
||
|
}]
|
||
|
}
|