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 jillr committed Aug 27, 2021
1 parent b5aced4 commit ff72d20
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions plugins/modules/ec2_vpc_route_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
__metaclass__ = type


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

EXAMPLES = '''
EXAMPLES = r'''
# Note: These examples do not set authentication details, see the AWS Guide for details.
# Basic creation example:
Expand Down Expand Up @@ -124,7 +124,7 @@
state: absent
'''

RETURN = '''
RETURN = r'''
route_table:
description: Route Table result
returned: always
Expand Down Expand Up @@ -710,14 +710,14 @@ def ensure_route_table_present(connection, module):
def main():
argument_spec = dict(
lookup=dict(default='tag', choices=['tag', 'id']),
propagating_vgw_ids=dict(type='list'),
propagating_vgw_ids=dict(type='list', elements='str'),
purge_routes=dict(default=True, type='bool'),
purge_subnets=dict(default=True, type='bool'),
purge_tags=dict(default=False, type='bool'),
route_table_id=dict(),
routes=dict(default=[], type='list'),
routes=dict(default=[], type='list', elements='dict'),
state=dict(default='present', choices=['present', 'absent']),
subnets=dict(type='list'),
subnets=dict(type='list', elements='str'),
tags=dict(type='dict', aliases=['resource_tags']),
vpc_id=dict()
)
Expand Down

0 comments on commit ff72d20

Please sign in to comment.