From b63ca685df9a3bd19a48051f0f9d9c59ce8cdb54 Mon Sep 17 00:00:00 2001 From: Ding Deng Date: Sat, 8 Nov 2014 23:30:26 +0800 Subject: [PATCH] Support new AWS regions: cn-north-1, eu-central-1. --- lib/ansible/module_utils/ec2.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/ansible/module_utils/ec2.py b/lib/ansible/module_utils/ec2.py index b4558ef0a40..417e1b9521b 100644 --- a/lib/ansible/module_utils/ec2.py +++ b/lib/ansible/module_utils/ec2.py @@ -36,6 +36,8 @@ AWS_REGIONS = [ 'ap-northeast-1', 'ap-southeast-1', 'ap-southeast-2', + 'cn-north-1', + 'eu-central-1', 'eu-west-1', 'sa-east-1', 'us-east-1',