-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathubuntu-14.04-x86_64.json
49 lines (49 loc) · 1.56 KB
/
ubuntu-14.04-x86_64.json
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"variables": {
"region": "",
"vpc_id": "",
"subnet_id": "",
"associate_public_ip_address": ""
},
"builders": [
{
"type": "amazon-ebs",
"region": "{{user `region`}}",
"source_ami_filter": {
"filters": {
"virtualization-type": "hvm",
"name": "*ubuntu-trusty-14.04*",
"root-device-type": "ebs",
"architecture": "x86_64"
},
"owners": [
"099720109477"
],
"most_recent": "true"
},
"instance_type": "t2.micro",
"ssh_username": "ubuntu",
"ami_name": "hvm-ssd/ubuntu-trusty-14.04-x86_64-server",
"ami_block_device_mappings": [
{
"device_name": "/dev/sdb",
"no_device": "true"
},
{
"device_name": "/dev/sdc",
"no_device": "true"
}
],
"ami_description": "Ubuntu Trusty 14.04 x86_64 Server",
"tags": {
"SourceAMI": "{{ .SourceAMI }}",
"BuildRegion": "{{ .BuildRegion }}"
},
"vpc_id": "{{user `vpc_id`}}",
"subnet_id": "{{user `subnet_id`}}",
"associate_public_ip_address": "{{user `associate_public_ip_address`}}",
"force_deregister": "true",
"force_delete_snapshot": "true"
}
]
}