-
Notifications
You must be signed in to change notification settings - Fork 10
/
configuration.py
36 lines (29 loc) · 942 Bytes
/
configuration.py
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
__author__ = 'Dixon Whitmire'
# AWS KEY SETTINGS
AWS_API_KEY = ''
AWS_SECRET_KEY = ''
AWS_KEY_FILE = ''
LOCAL_AWS_KEY_FILE = '~/.ssh/' + AWS_KEY_FILE
#AMI SETTINGS
# Ubuntu 12.x EBS Backed Instances
# AMI IDs are available on http://cloud.ubuntu.com/ami/
AMI_ID_BY_REGION = {
'us-east-1': 'ami-a29943cb',
'us-west-1': 'ami-87712ac2',
'us-west-2': 'ami-20800c10'
}
AMI_SECURITY_GROUP = 'default'
AMI_TYPES = ('mongo',)
AWS_USER_NAME = 'ubuntu'
# AWS REGION AND CLOUD FORMATION SETTINGS
# Note: If a config contains a single item, a trailing ',' is required since the settings are tuples.
# Example: AWS_REGIONS =('us-east-1',)
# AWS Region Identifiers
AWS_REGIONS = ()
# AWS S3 Bucket Names (Used for Cloud Formation)
AWS_CF_S3_BUCKETS = ()
# MONGO CONFIGURATIONS
MONGO_AMI_TYPE = 'mongo'
MONGODB_DOWNLOAD = 'http://fastdl.mongodb.org/linux/mongodb-linux-x86_64-2.2.0.tgz'
MONGODB_USER = 'mongodb'
MONGODB_GROUP = 'nogroup'