Skip to content

Commit

Permalink
Add example Packer template
Browse files Browse the repository at this point in the history
  • Loading branch information
mwunsch committed May 17, 2016
1 parent 37ab27d commit fbf7838
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions example.json
@@ -0,0 +1,16 @@
{
"variables": {
"aws_access_key": "",
"aws_secret_key": ""
},
"builders": [{
"type": "amazon-ebs",
"access_key": "{{user `aws_access_key`}}",
"secret_key": "{{user `aws_secret_key`}}",
"region": "us-east-1",
"source_ami": "ami-fce3c696",
"instance_type": "t2.micro",
"ssh_username": "ubuntu",
"ami_name": "packer-example {{timestamp}}"
}]
}

0 comments on commit fbf7838

Please sign in to comment.