@@ -50,9 +50,12 @@ echo ""
5050echo -e " # AWS Configuration\n"
5151# ######################################################
5252# AWS_REGION is the AWS region.
53- AWS_REGION=${AWS_REGION:- " eu-central-1" }
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" }
5456# AWS_ZONE is the AWS zone.
55- AWS_ZONE=${AWS_ZONE:- " eu-central-1a" }
57+ # AWS_ZONE=${AWS_ZONE:-"eu-central-1a"}
58+ AWS_ZONE=${AWS_ZONE:- " ap-southeast-1a" }
5659# AWS_NETWORK_NAME is the name of the VPC and all the network
5760# objects we create in the VPC.
5861AWS_NETWORK_NAME=${AWS_NETWORK_NAME:- " ${SERVER_NAME} " }
@@ -70,8 +73,11 @@ echo -e " AWS_REGION: ${AWS_REGION}\n AWS_ZONE: ${AWS_ZONE}\n AWS_NETWORK_NAM
7073AWS_MACHINE_TYPE=${AWS_MACHINE_TYPE:- " c5.4xlarge" }
7174# AWS_AMI is the AMI we will use for the server.
7275# AMIs:
73- # * Canonical, Ubuntu, 22.04 LTS, amd64 jammy image build on 2023-02-08 id: ami-0d1ddd83282187d18
74- AWS_AMI=${AWS_AMI:- " ami-0d1ddd83282187d18" }
76+ # * Canonical, Ubuntu, 22.04 LTS, amd64 jammy image build on 2023-02-08 id:
77+ # * eu-central-1: ami-0d1ddd83282187d18
78+ # * ap-southeast-1: ami-082b1f4237bd816a1
79+ # FIXME(sbueringer)
80+ AWS_AMI=${AWS_AMI:- " ami-082b1f4237bd816a1" }
7581echo -e " AWS_MACHINE_TYPE: ${AWS_MACHINE_TYPE} \n AWS_AMI: ${AWS_AMI} "
7682# AWS_KEY_PAIR is the key pair we use to access the server.
7783# Prepare key pair with:
0 commit comments