diff --git a/aws-tools/lambda/stopinstances.py b/aws-tools/lambda/stopinstances.py index ebbf877..830e6c8 100644 --- a/aws-tools/lambda/stopinstances.py +++ b/aws-tools/lambda/stopinstances.py @@ -1,7 +1,7 @@ import boto3 # Array of regions we want to scan for running instances -regions = ["us-west-1", "us-west-2", "us-east-1", "us-east-2"] +regions = ["us-west-1", "us-west-2", "us-east-1", "us-east-2", "ap-southeast-1"] # Dictionary that holds the key/value pair for each region # key = key e.g. 'us-west-1' diff --git a/aws-tools/s3-create.py b/aws-tools/s3-create.py index cdb7142..d988af6 100644 --- a/aws-tools/s3-create.py +++ b/aws-tools/s3-create.py @@ -8,7 +8,7 @@ import os import json -regions = ["us-west-1", "us-west-2", "us-east-1", "us-east-2"] +regions = ["us-west-1", "us-west-2", "us-east-1", "us-east-2", "ap-southeast-1"] try: aws_access_key_id = os.environ["AWS_ACCESS_KEY_ID"] diff --git a/aws-tools/s3-delete.py b/aws-tools/s3-delete.py index 0944674..fecde62 100644 --- a/aws-tools/s3-delete.py +++ b/aws-tools/s3-delete.py @@ -7,7 +7,7 @@ import getopt import os -regions = ["us-west-1", "us-west-2", "us-east-1", "us-east-2"] +regions = ["us-west-1", "us-west-2", "us-east-1", "us-east-2", "ap-southeast-1"] aws_access_key_id = os.environ["AWS_ACCESS_KEY_ID"] aws_secret_access_key = os.environ["AWS_SECRET_ACCESS_KEY"] diff --git a/aws-tools/s3-sync-buckets.py b/aws-tools/s3-sync-buckets.py index cc871d2..74f0afd 100644 --- a/aws-tools/s3-sync-buckets.py +++ b/aws-tools/s3-sync-buckets.py @@ -5,7 +5,7 @@ import sys import getopt -regions = ["us-west-1", "us-west-2", "us-east-1", "us-east-2"] +regions = ["us-west-1", "us-west-2", "us-east-1", "us-east-2", "ap-southeast-1"] aws_access_key_id = os.environ["AWS_ACCESS_KEY_ID"] aws_secret_access_key = os.environ["AWS_SECRET_ACCESS_KEY"] diff --git a/aws-tools/start-instances.py b/aws-tools/start-instances.py index d971f16..336d3d1 100755 --- a/aws-tools/start-instances.py +++ b/aws-tools/start-instances.py @@ -5,7 +5,7 @@ import getopt filter = "" -regions = ["us-west-1", "us-west-2", "us-east-1", "us-east-2"] +regions = ["us-west-1", "us-west-2", "us-east-1", "us-east-2", "ap-southeast-1"] allInstances = {} # Remove 1st argument from the diff --git a/aws-tools/status-instances.py b/aws-tools/status-instances.py index cdbafef..675e3e9 100755 --- a/aws-tools/status-instances.py +++ b/aws-tools/status-instances.py @@ -5,7 +5,7 @@ import getopt filter = "" -regions = ["us-west-1", "us-west-2", "us-east-1", "us-east-2"] +regions = ["us-west-1", "us-west-2", "us-east-1", "us-east-2", "ap-southeast-1"] allInstances = {} # Remove 1st argument from the diff --git a/aws-tools/stop-instances.py b/aws-tools/stop-instances.py index a24d288..1651bd8 100755 --- a/aws-tools/stop-instances.py +++ b/aws-tools/stop-instances.py @@ -5,7 +5,7 @@ import getopt filter = "" -regions = ["us-west-1", "us-west-2", "us-east-1", "us-east-2"] +regions = ["us-west-1", "us-west-2", "us-east-1", "us-east-2", "ap-southeast-1"] # regions=['us-east-2'] allInstances = {}