0% found this document useful (0 votes)
26 views1 page

Packer - Json

Uploaded by

praveenrauth123
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
26 views1 page

Packer - Json

Uploaded by

praveenrauth123
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

{

"builders": [{
"type": "azure-arm",

"client_id": "32e17675-0f81-4889-91a4-fcad5aeb478f",
"client_secret": "4GO1MbhNlOG@dhA6_]n1RMmZETCFvgZ_",
"tenant_id": "b6569276-35cb-454b-9d0c-3a4fb67537ac",
"subscription_id": "88d7ef57-7ae6-4653-9b3a-cd5daf3ff3d4",

"managed_image_name": "MyUbuntuImage",
"managed_image_resource_group_name": "HUBRG",

"os_type": "Linux",
"image_publisher": "Canonical",
"image_offer": "UbuntuServer",
"image_sku": "16.04-LTS",

"location": "eastus",
"vm_size": "Standard_B1ms"
}],
"provisioners": [{
"execute_command": "chmod +x {{ .Path }}; {{ .Vars }} sudo -E sh
'{{ .Path }}'",
"inline": [
"apt-get update",
"apt-get install nginx -y",
"apt-get install stress -y",
"systemctl enable nginx",
"/usr/sbin/waagent -force -deprovision+user && export HISTSIZE=0 && sync"
],
"inline_shebang": "/bin/sh -x",
"type": "shell"
}]
}

You might also like