From 864f266216f1eb6c9b7913d72572ca71e78574a5 Mon Sep 17 00:00:00 2001 From: Abhijeet Kasurde Date: Fri, 16 Nov 2018 05:19:33 +0530 Subject: [PATCH] Correct usage in RDS Group name in example (#48705) RDS Group name in `describe_db_parameter_groups` does not accept underscore in name. Replacing underscore with hypen which is allowed. --- lib/ansible/modules/cloud/amazon/rds_param_group.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ansible/modules/cloud/amazon/rds_param_group.py b/lib/ansible/modules/cloud/amazon/rds_param_group.py index 7ddcd757c9..53f195b346 100644 --- a/lib/ansible/modules/cloud/amazon/rds_param_group.py +++ b/lib/ansible/modules/cloud/amazon/rds_param_group.py @@ -103,7 +103,7 @@ EXAMPLES = ''' # Add or change a parameter group, in this case setting auto_increment_increment to 42 * 1024 - rds_param_group: state: present - name: norwegian_blue + name: norwegian-blue description: 'My Fancy Ex Parrot Group' engine: 'mysql5.6' params: @@ -115,7 +115,7 @@ EXAMPLES = ''' # Remove a parameter group - rds_param_group: state: absent - name: norwegian_blue + name: norwegian-blue ''' RETURN = '''