-
Notifications
You must be signed in to change notification settings - Fork 2
/
config.sh
29 lines (22 loc) · 833 Bytes
/
config.sh
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
############################### Backup #########################################
BACKUP_PREFIX="mc_"
BACKUP_PATH="s3://s3_ bucket/path/" ### CHANGE ME!
TMP_PATH="/home/ubuntu/"
################################## HARDWARE ####################################
INSTANCE_NAME="minecraft"
INSTANCE_TYPE=r4.large
PRICE=0.10
# check https://cloud-images.ubuntu.com/locator/ec2/
# look for hvm:ebs-ssd
AMI=ami-6c101b0a
VPC=vpc-abcd123 ### CHANGE ME!
SUBNET=subnet-abcdef123 ### CHANGE ME!
VOL_SIZE=8
########################### Namecheap Dynamic DNS ##############################
DDNS_DOMAIN=foo.bar ### CHANGE ME!
DDNS_HOST=mc ### CHANGE ME!
DDNS_PASSWORD=verylongpasswordgoeshere ### CHANGE ME!
######################### Load custom config ###################################
if [ -f config.local ]; then
. config.local
fi