Skip to content

Instantly share code, notes, and snippets.

@100daysofdevops
Created March 10, 2019 05:46
Show Gist options
  • Select an option

  • Save 100daysofdevops/42cc3899b84d843f806fbfd28b2ef369 to your computer and use it in GitHub Desktop.

Select an option

Save 100daysofdevops/42cc3899b84d843f806fbfd28b2ef369 to your computer and use it in GitHub Desktop.
{
"builders": [{
"type": "amazon-ebs",
"region": "us-west-2",
"source_ami": "ami-01ed306a12b7d1c96",
"instance_type": "t2.micro",
"ssh_username": "centos",
"ami_name": "centos-packer-example-1.0"
}],
"provisioners": [
{
"type": "shell",
"script": "ansible.sh"
},
{
"type": "ansible-local",
"playbook_file": "./playbook.yml"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment