From 3b5afc2393d1cc0b79fa41a7d516c24bafa69753 Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Tue, 27 Oct 2015 21:49:54 -0400 Subject: [PATCH] made port default depending on db engine --- cloud/amazon/rds.py | 30 +++++++++++++++++++++++------- 1 file changed, 23 insertions(+), 7 deletions(-) diff --git a/cloud/amazon/rds.py b/cloud/amazon/rds.py index 1eb4cc8ab1d..90b89dbf734 100644 --- a/cloud/amazon/rds.py +++ b/cloud/amazon/rds.py @@ -112,12 +112,14 @@ options: default: null port: description: - - Port number that the DB instance uses for connections. Defaults to 3306 for mysql. Must be changed to 1521 for Oracle, 1433 for SQL Server, 5432 for PostgreSQL. Used only when command=create or command=replicate. + - Port number that the DB instance uses for connections. Used only when command=create or command=replicate. + - Prior to 2.0 it always defaults to null and the API would use 3306, it had to be set to other DB default values when not using MySql. + Starting at 2.0 it auotmaticaly defaults to what is expected for each c(db_engine). required: false - default: null + default: 3306 for mysql, 1521 for Oracle, 1433 for SQL Server, 5432 for PostgreSQL. upgrade: description: - - Indicates that minor version upgrades should be applied automatically. Used only when command=create or command=replicate. + - Indicates that minor version upgrades should be applied automatically. Used only when command=create or command=replicate. required: false default: no choices: [ "yes", "no" ] @@ -289,6 +291,12 @@ try: except ImportError: has_rds2 = False +DEFAULT_PORTS= { + 'mysql': 3306, + 'oracle': 1521, + 'sqlserver': 1433, + 'postgres': 5432, +} class RDSException(Exception): def __init__(self, exc): @@ -317,7 +325,7 @@ class RDSConnection: return None def get_db_snapshot(self, snapshotid): - try: + try: return RDSSnapshot(self.connection.get_all_dbsnapshots(snapshot_id=snapshotid)[0]) except boto.exception.BotoServerError, e: return None @@ -994,7 +1002,7 @@ def main(): parameter_group = dict(required=False), license_model = dict(choices=['license-included', 'bring-your-own-license', 'general-public-license', 'postgresql-license'], required=False), multi_zone = dict(type='bool', default=False), - iops = dict(required=False), + iops = dict(required=False), security_groups = dict(required=False), vpc_security_groups = dict(type='list', required=False), port = dict(required=False), @@ -1002,7 +1010,7 @@ def main(): option_group = dict(required=False), maint_window = dict(required=False), backup_window = dict(required=False), - backup_retention = dict(required=False), + backup_retention = dict(required=False), zone = dict(aliases=['aws_zone', 'ec2_zone'], required=False), subnet = dict(required=False), wait = dict(type='bool', default=False), @@ -1040,6 +1048,14 @@ def main(): if not region: module.fail_json(msg="Region not specified. Unable to determine region from EC2_REGION.") + # set port to per db defaults if not specified + if module.params['port'] is None and module.params['command'] in ['create', 'replicate']: + if '-' in module.params['db_engine']: + engine = module.params['db_engine'].split('-')[0] + else: + engine = module.params['db_engine'] + module.params['port'] = DEFAULT_PORTS[engine.lower()] + # connect to the rds endpoint if has_rds2: conn = RDS2Connection(module, region, **aws_connect_params) @@ -1047,7 +1063,7 @@ def main(): conn = RDSConnection(module, region, **aws_connect_params) invocations[module.params.get('command')](module, conn) - + # import module snippets from ansible.module_utils.basic import * from ansible.module_utils.ec2 import *