Skip to content

Commit

Permalink
Added example templates for Azure
Browse files Browse the repository at this point in the history
  • Loading branch information
cbednarski committed Mar 15, 2016
1 parent 17c365e commit d77b161
Show file tree
Hide file tree
Showing 5 changed files with 185 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ dev: deps
fmt:
go fmt `go list ./... | grep -v vendor`

# Install js-beautify with npm install -g js-beautify
fmt-examples:
find examples -name *.json | xargs js-beautify -r -s 2 -n -eol "\n"

# generate runs `go generate` to build the dynamically generated
# source files.
generate: deps
Expand Down Expand Up @@ -78,4 +82,4 @@ vendor:
godep restore
godep save

.PHONY: bin checkversion ci default deps generate releasebin test testacc testrace updatedeps
.PHONY: bin checkversion ci default deps fmt fmt-examples generate releasebin test testacc testrace updatedeps
46 changes: 46 additions & 0 deletions examples/azure/centos.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
{
"variables": {
"client_id": "{{env `AZURE_CLIENT_ID`}}",
"client_secret": "{{env `AZURE_CLIENT_SECRET`}}",
"resource_group": "{{env `AZURE_RESOURCE_GROUP`}}",
"storage_account": "{{env `AZURE_STORAGE_ACCOUNT`}}",
"subscription_id": "{{env `AZURE_SUBSCRIPTION_ID`}}",
"tenant_id": "{{env `AZURE_TENANT_ID`}}",
"ssh_user": "centos",
"ssh_pass": null
},
"builders": [{
"type": "azure-arm",

"client_id": "{{user `cid`}}",
"client_secret": "{{user `cst`}}",
"subscription_id": "{{user `sid`}}",
"tenant_id": "{{user `tid`}}",
"resource_group_name": "{{user `rgn`}}",
"storage_account": "{{user `sa`}}",

"capture_container_name": "images",
"capture_name_prefix": "packer",

"ssh_username": "{{user `ssh_user`}}",
"ssh_password": "{{user `ssh_pass`}}",

"image_publisher": "OpenLogic",
"image_offer": "CentOS",
"image_sku": "7.1",
"ssh_pty": "true",

"location": "South Central US",
"vm_size": "Standard_A2"
}],
"provisioners": [{
"execute_command": "echo '{{user `ssh_pass`}}' | {{ .Vars }} sudo -S -E sh '{{ .Path }}'",
"inline": [
"yum update -y",
"/usr/sbin/waagent -force -deprovision+user && export HISTSIZE=0 && sync"
],
"inline_shebang": "/bin/sh -x",
"type": "shell",
"skip_clean": true
}]
}
47 changes: 47 additions & 0 deletions examples/azure/debian.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
{
"variables": {
"client_id": "{{env `AZURE_CLIENT_ID`}}",
"client_secret": "{{env `AZURE_CLIENT_SECRET`}}",
"resource_group": "{{env `AZURE_RESOURCE_GROUP`}}",
"storage_account": "{{env `AZURE_STORAGE_ACCOUNT`}}",
"subscription_id": "{{env `AZURE_SUBSCRIPTION_ID`}}",
"tenant_id": "{{env `AZURE_TENANT_ID`}}",
"ssh_user": "packer",
"ssh_pass": null
},
"builders": [{
"type": "azure-arm",

"client_id": "{{user `cid`}}",
"client_secret": "{{user `cst`}}",
"subscription_id": "{{user `sid`}}",
"tenant_id": "{{user `tid`}}",
"resource_group_name": "{{user `rgn`}}",
"storage_account": "{{user `sa`}}",

"capture_container_name": "images",
"capture_name_prefix": "packer",

"ssh_username": "{{user `ssh_user`}}",
"ssh_password": "{{user `ssh_pass`}}",

"image_publisher": "credativ",
"image_offer": "Debian",
"image_sku": "8",
"ssh_pty": "true",

"location": "South Central US",
"vm_size": "Standard_A2"
}],
"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",
"type": "shell"
}]
}
46 changes: 46 additions & 0 deletions examples/azure/opensuse.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
{
"variables": {
"client_id": "{{env `AZURE_CLIENT_ID`}}",
"client_secret": "{{env `AZURE_CLIENT_SECRET`}}",
"resource_group": "{{env `AZURE_RESOURCE_GROUP`}}",
"storage_account": "{{env `AZURE_STORAGE_ACCOUNT`}}",
"subscription_id": "{{env `AZURE_SUBSCRIPTION_ID`}}",
"tenant_id": "{{env `AZURE_TENANT_ID`}}",
"ssh_user": "packer",
"ssh_pass": null
},
"builders": [{
"type": "azure-arm",

"client_id": "{{user `cid`}}",
"client_secret": "{{user `cst`}}",
"subscription_id": "{{user `sid`}}",
"tenant_id": "{{user `tid`}}",
"resource_group_name": "{{user `rgn`}}",
"storage_account": "{{user `sa`}}",

"capture_container_name": "images",
"capture_name_prefix": "packer",

"ssh_username": "{{user `ssh_user`}}",
"ssh_password": "{{user `ssh_pass`}}",

"image_publisher": "SUSE",
"image_offer": "openSUSE",
"image_sku": "13.2",
"ssh_pty": "true",

"location": "South Central US",
"vm_size": "Standard_A2"
}],
"provisioners": [{
"execute_command": "echo '{{user `ssh_pass`}}' | {{ .Vars }} sudo -S -E sh '{{ .Path }}'",
"inline": [
"zypper update -y",

"/usr/sbin/waagent -force -deprovision+user && export HISTSIZE=0 && sync"
],
"inline_shebang": "/bin/sh -x",
"type": "shell"
}]
}
41 changes: 41 additions & 0 deletions examples/azure/ubuntu.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{
"variables": {
"client_id": "{{env `AZURE_CLIENT_ID`}}",
"client_secret": "{{env `AZURE_CLIENT_SECRET`}}",
"resource_group": "{{env `AZURE_RESOURCE_GROUP`}}",
"storage_account": "{{env `AZURE_STORAGE_ACCOUNT`}}",
"subscription_id": "{{env `AZURE_SUBSCRIPTION_ID`}}",
"tenant_id": "{{env `AZURE_TENANT_ID`}}"
},
"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`}}",
"tenant_id": "{{user `tenant_id`}}",

"capture_container_name": "images",
"capture_name_prefix": "packer",

"image_publisher": "Canonical",
"image_offer": "UbuntuServer",
"image_sku": "14.04.3-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"
}]
}

0 comments on commit d77b161

Please sign in to comment.