@@ -50,12 +50,12 @@ echo ""
5050echo -e " # AWS Configuration\n"
5151# ######################################################
5252# AWS_REGION is the AWS region.
53- # FIXME(sbueringer): change default region and zone back
54- # AWS_REGION=${AWS_REGION:-"eu-central-1"}
55- AWS_REGION=${AWS_REGION:- " ap-southeast-1" }
53+ # FIXME(sbueringer): cleanup ap-southeast region, zone, ..
54+ AWS_REGION=${AWS_REGION:- " eu-central-1" }
55+ # AWS_REGION=${AWS_REGION:-"ap-southeast-1"}
5656# AWS_ZONE is the AWS zone.
57- # AWS_ZONE=${AWS_ZONE:-"eu-central-1a"}
58- AWS_ZONE=${AWS_ZONE:- " ap-southeast-1a" }
57+ AWS_ZONE=${AWS_ZONE:- " eu-central-1a" }
58+ # AWS_ZONE=${AWS_ZONE:-"ap-southeast-1a"}
5959# AWS_NETWORK_NAME is the name of the VPC and all the network
6060# objects we create in the VPC.
6161AWS_NETWORK_NAME=${AWS_NETWORK_NAME:- " ${SERVER_NAME} " }
@@ -77,7 +77,8 @@ AWS_MACHINE_TYPE=${AWS_MACHINE_TYPE:-"c5.4xlarge"}
7777# * eu-central-1: ami-0d1ddd83282187d18
7878# * ap-southeast-1: ami-082b1f4237bd816a1
7979# FIXME(sbueringer)
80- AWS_AMI=${AWS_AMI:- " ami-082b1f4237bd816a1" }
80+ AWS_AMI=${AWS_AMI:- " ami-0d1ddd83282187d18" }
81+ # AWS_AMI=${AWS_AMI:-"ami-082b1f4237bd816a1"}
8182echo -e " AWS_MACHINE_TYPE: ${AWS_MACHINE_TYPE} \n AWS_AMI: ${AWS_AMI} "
8283# AWS_KEY_PAIR is the key pair we use to access the server.
8384# Prepare key pair with:
0 commit comments