From ec6ef4974aa80fe659581ed3a0f3fc5e84cb3757 Mon Sep 17 00:00:00 2001 From: Matthew Jones Date: Tue, 3 Nov 2015 23:34:28 -0500 Subject: [PATCH] Update GCE Region Choices per Google --- awx/settings/defaults.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/awx/settings/defaults.py b/awx/settings/defaults.py index 06e4f9cae1..ac896c2752 100644 --- a/awx/settings/defaults.py +++ b/awx/settings/defaults.py @@ -572,13 +572,19 @@ VMWARE_EXCLUDE_EMPTY_GROUPS = True # provide a list here. # Source: https://developers.google.com/compute/docs/zones GCE_REGION_CHOICES = [ + ('us-east1-b', 'US East (B)'), + ('us-east1-c', 'US East (C)'), + ('us-east1-d', 'US East (D)'), ('us-central1-a', 'US Central (A)'), ('us-central1-b', 'US Central (B)'), + ('us-central1-c', 'US Central (C)'), ('us-central1-f', 'US Central (F)'), - ('europe-west1-a', 'Europe West (A)'), ('europe-west1-b', 'Europe West (B)'), + ('europe-west1-c', 'Europe West (C)'), + ('europe-west1-d', 'Europe West (D)'), ('asia-east1-a', 'Asia East (A)'), ('asia-east1-b', 'Asia East (B)'), + ('asia-east1-c', 'Asia East (C)'), ] GCE_REGIONS_BLACKLIST = []