Skip to content

Instantly share code, notes, and snippets.

@ProfessorNudelz
Created November 26, 2018 05:41
Show Gist options
  • Save ProfessorNudelz/ef9f7b08acb0cec82f0f5069f0a7d00e to your computer and use it in GitHub Desktop.
Save ProfessorNudelz/ef9f7b08acb0cec82f0f5069f0a7d00e to your computer and use it in GitHub Desktop.
{
"builders": [{
"type": "digitalocean",
"api_token": "API_TOKEN",
"image": "ubuntu-16-04-x64",
"region": "sgp1",
"size": "s-1vcpu-1gb",
"ssh_username": "root",
"droplet_name": "PackerTest",
"tags": ["packer"]
}],
"provisioners": [{
"type": "shell",
"inline": [
"#!/bin/bash -e",
"sudo apt-get update",
"sudo apt-get install nginx -y"
]
}]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment