mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
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.
This commit is contained in:
parent
0c7f6e5047
commit
864f266216
1 changed files with 2 additions and 2 deletions
|
@ -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 = '''
|
||||
|
|
Loading…
Reference in a new issue