From 74285d6a538ef810efd428a8c503a4b9f4e83919 Mon Sep 17 00:00:00 2001 From: Adrian Moisey Date: Mon, 11 Jul 2016 01:20:12 +0200 Subject: [PATCH] Add default port for aurora (#4102) If a port isn't specified, it's looked up. The lookup breaks without this. Related: https://github.com/ansible/ansible-modules-core/pull/3414 --- cloud/amazon/rds.py | 1 + 1 file changed, 1 insertion(+) diff --git a/cloud/amazon/rds.py b/cloud/amazon/rds.py index 3be87c6d2b9..a54863b7d15 100644 --- a/cloud/amazon/rds.py +++ b/cloud/amazon/rds.py @@ -320,6 +320,7 @@ except ImportError: has_rds2 = False DEFAULT_PORTS= { + 'aurora': 3306, 'mariadb': 3306, 'mysql': 3306, 'oracle': 1521,