46 lines
1.3 KiB
JSON
46 lines
1.3 KiB
JSON
{
|
|
"variables": {
|
|
"client_id": "{{env `ARM_CLIENT_ID`}}",
|
|
"client_secret": "{{env `ARM_CLIENT_SECRET`}}",
|
|
"subscription_id": "{{env `ARM_SUBSCRIPTION_ID`}}",
|
|
"ssh_user": "packer",
|
|
"ssh_pass": "{{env `ARM_SSH_PASS`}}"
|
|
},
|
|
"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`}}",
|
|
|
|
"managed_image_resource_group_name": "packertest",
|
|
"managed_image_name": "MyDebianOSImage",
|
|
|
|
"ssh_username": "{{user `ssh_user`}}",
|
|
"ssh_password": "{{user `ssh_pass`}}",
|
|
|
|
"os_type": "Linux",
|
|
"image_publisher": "credativ",
|
|
"image_offer": "Debian",
|
|
"image_sku": "9",
|
|
"ssh_pty": "true",
|
|
|
|
"location": "South Central US",
|
|
"vm_size": "Standard_DS2_v2"
|
|
}],
|
|
"provisioners": [{
|
|
"execute_command": "echo '{{user `ssh_pass`}}' | {{ .Vars }} sudo -S -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",
|
|
"skip_clean": true,
|
|
"type": "shell"
|
|
}]
|
|
}
|