forked from uber/Python-Sample-Application
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackerPython.json
More file actions
33 lines (32 loc) · 821 Bytes
/
packerPython.json
File metadata and controls
33 lines (32 loc) · 821 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"variables": {
"aws_access_key": "",
"aws_secret_key": "",
"version": "{{env `GIT_TAG_NAME`}}"
},
"builders": [{
"type": "amazon-ebs",
"access_key": "{{user `aws_access_key`}}",
"secret_key": "{{user `aws_secret_key`}}",
"region": "eu-west-1",
"source_ami_filter": {
"filters": {
"virtualization-type": "hvm",
"name": "ubuntu/images/*ubuntu-xenial-16.04-amd64-server-*",
"root-device-type": "ebs"
},
"owners": ["099720109477"],
"most_recent": true
},
"instance_type": "t2.micro",
"ssh_username": "ubuntu",
"ami_name": "Python-App-VirenM-{{timestamp}}"
}],
"provisioners": [
{
"type": "chef-solo",
"cookbook_paths": ["./cookbooks"],
"run_list": ["python::default", "nginxCB::default"]
}
]
}