Skip to content

Commit

Permalink
Docs: sanity fixes (ansible-collections#133)
Browse files Browse the repository at this point in the history
Signed-off-by: Abhijeet Kasurde <[email protected]>

This commit was initially merged in https://github.com/ansible-collections/community.aws
See: ansible-collections@059cf9e
  • Loading branch information
Akasurde authored and alinabuzachis committed Oct 6, 2023
1 parent 4448e72 commit 3352bd4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions plugins/modules/iam_group.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
__metaclass__ = type


DOCUMENTATION = '''
DOCUMENTATION = r'''
---
module: iam_group
version_added: 1.0.0
Expand Down Expand Up @@ -74,7 +74,7 @@
'''

EXAMPLES = '''
EXAMPLES = r'''
# Note: These examples do not set authentication details, see the AWS Guide for details.
- name: Create a group
Expand Down Expand Up @@ -119,7 +119,7 @@
state: absent
'''
RETURN = '''
RETURN = r'''
iam_group:
description: dictionary containing all the group information including group membership
returned: success
Expand Down Expand Up @@ -410,8 +410,8 @@ def main():

argument_spec = dict(
name=dict(required=True),
managed_policies=dict(default=[], type='list', aliases=['managed_policy']),
users=dict(default=[], type='list'),
managed_policies=dict(default=[], type='list', aliases=['managed_policy'], elements='str'),
users=dict(default=[], type='list', elements='str'),
state=dict(choices=['present', 'absent'], required=True),
purge_users=dict(default=False, type='bool'),
purge_policies=dict(default=False, type='bool', aliases=['purge_policy', 'purge_managed_policies'])
Expand Down

0 comments on commit 3352bd4

Please sign in to comment.