-
Notifications
You must be signed in to change notification settings - Fork 3
/
defaults.json
72 lines (72 loc) · 1.42 KB
/
defaults.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"INSTANCE_TYPE": {
"type": "property",
"key": "INSTANCE_TYPE",
"default": "t2.medium"
},
"MAX_SIZE": {
"type": "property",
"key": "MAX_SIZE",
"default": 5
},
"MIN_SIZE": {
"type": "property",
"key": "MIN_SIZE",
"default": 1
},
"DESIRED_CAPACITY": {
"type": "property",
"key": "DESIRED_CAPACITY",
"default": 3
},
"SSH_LOCATION": {
"type": "property",
"key": "SSH_LOCATION",
"default": "10.0.0.0/16"
},
"DOCKER_REGISTRY_URL": {
"type": "property",
"key": "DOCKER_REGISTRY_URL",
"default": ""
},
"DOCKER_REGISTRY_USER": {
"type": "property",
"key": "DOCKER_REGISTRY_URL",
"default": ""
},
"DOCKER_REGISTRY_PASS": {
"type": "property",
"key": "DOCKER_REGISTRY_PASS",
"default": ""
},
"DOCKER_REGISTRY_EMAIL": {
"type": "property",
"key": "DOCKER_REGISTRY_EMAIL",
"default": ""
},
"DOCKER_PRIVATE_REGISTRY": {
"type": "property",
"key": "DOCKER_PRIVATE_REGISTRY",
"default": false
},
"DATA_DRIVE_SIZE": {
"type": "property",
"key": "DATA_DRIVE_SIZE",
"default": 1
},
"OPTIONAL_CERTIFICATE_ARN": {
"type": "property",
"key": "OPTIONAL_CERTIFICATE_ARN",
"default": ""
},
"OPTIONAL_DOMAIN": {
"type": "property",
"key": "OPTIONAL_DOMAIN",
"default": ""
},
"USE_FARGATE": {
"type": "property",
"key": "USE_FARGATE",
"default": "false"
}
}