Skip to content

Commit

Permalink
Docs: sanity fixes (ansible-collections#133)
Browse files Browse the repository at this point in the history
  • Loading branch information
Akasurde authored and mandar242 committed Oct 23, 2024
1 parent 296386a commit 72248e1
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions plugins/modules/ec2_transit_gateway_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
__metaclass__ = type


DOCUMENTATION = '''
DOCUMENTATION = r'''
module: ec2_transit_gateway_info
short_description: Gather information about ec2 transit gateways in AWS
version_added: 1.0.0
Expand All @@ -23,6 +23,7 @@
- A list of transit gateway IDs to gather information for.
aliases: [transit_gateway_id]
type: list
elements: str
filters:
description:
- A dict of filters to apply. Each dict item consists of a filter key and a filter value.
Expand All @@ -34,7 +35,7 @@
'''

EXAMPLES = '''
EXAMPLES = r'''
# Note: These examples do not set authentication details, see the AWS Guide for details.
- name: Gather info about all transit gateways
Expand All @@ -58,7 +59,7 @@
- tgw-03c53443d5a8cb716
'''

RETURN = '''
RETURN = r'''
transit_gateways:
description: >
Transit gateways that match the provided filters. Each element consists of a dict with all the information
Expand Down

0 comments on commit 72248e1

Please sign in to comment.