-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontrail-appformix.json
23 lines (23 loc) · 1.49 KB
/
contrail-appformix.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"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-west-2",
"source_ami": "ami-b828ead8",
"instance_type": "t2.2xlarge",
"ssh_username": "ubuntu",
"ami_name": "mm-packer-{{timestamp}}"
}
],
"provisioners": [
{
"type": "shell",
"script": "setup_things.sh"
}
]
}