blob: 8f6f802fd4a8907d0799528950a26592c638b779 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{
"tw_aws": {
"api": "aws",
"vendor": "aws",
"auth": {
"region": "us-west-2",
"aws_access_key_id": "...",
"aws_secret_access_key": "..."
},
// https://wiki.debian.org/Cloud/AmazonEC2Image/Jessie
// debian jessie 8.6
"default_image": "ami-2a34e94a",
"default_options": {
// Use at least t2.small (2gb ram) for single node installations
// 1gb of ram will bomb out of mem
"InstanceType": "t2.small"
}
}
}
|