-
Notifications
You must be signed in to change notification settings - Fork 1
/
juliabase.json
50 lines (48 loc) · 1.15 KB
/
juliabase.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
50
{
"builders": [
{
"type": "amazon-ebs",
"region": "us-east-1",
"instance_type": "c4.4xlarge",
"ssh_username": "ubuntu",
"ami_name": "MIT-JuliaBase {{timestamp}}",
"ami_description": "AMI with support for Julia. Provided by JuliaLab@MIT",
"ami_groups": "",
"ami_regions": ["us-east-1"],
"subnet_id": "subnet-7df31036",
"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
},
"ami_virtualization_type": "hvm",
"launch_block_device_mappings": [
{
"delete_on_termination": "true",
"volume_size": "14",
"volume_type": "gp2",
"device_name": "/dev/sda1"
}
],
"ami_block_device_mappings": [
{
"delete_on_termination": "true",
"volume_size": "14",
"volume_type": "gp2",
"device_name": "/dev/sda1"
}
]
}
],
"provisioners": [
{
"type": "ansible",
"playbook_file": "./juliabase_playbook.yml",
"extra_arguments": ["--extra-vars", "ansible_python_interpreter=/usr/bin/python3"]
}
]
}