-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathubuntu.json
More file actions
24 lines (23 loc) · 769 Bytes
/
ubuntu.json
File metadata and controls
24 lines (23 loc) · 769 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
{
"variables": {
"aws_access_key":null,
"aws_secret_key":null
},
"builders": [{
"type": "amazon-ebs",
"instance_type": "t2.micro",
"ssh_username": "ubuntu",
"access_key":"{{user `aws_access_key`}}",
"secret_key":"{{user `aws_secret_key`}}",
"ami_name": "packer {{timestamp}}",
"source_ami_filter":{
"filters":{
"virtualization-type":"hvm",
"name":"ubuntu/images/hvm-ssd/ubuntu-xenial-16.04-amd64-server-*",
"root-device-type":"ebs"
},
"owners":["099720109477"],
"most_recent":true
}
}]
}