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 alinabuzachis committed Jul 14, 2021
1 parent aaf8198 commit d26e0cc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions plugins/modules/ec2_vpc_nat_gateway_info.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_nat_gateway_info
short_description: Retrieves AWS VPC Managed Nat Gateway details using AWS methods.
version_added: 1.0.0
Expand All @@ -33,7 +33,7 @@
'''

EXAMPLES = '''
EXAMPLES = r'''
# Simple example of listing all nat gateways
- name: List all managed nat gateways in ap-southeast-2
community.aws.ec2_vpc_nat_gateway_info:
Expand Down Expand Up @@ -68,7 +68,7 @@
register: existing_nat_gateways
'''

RETURN = '''
RETURN = r'''
result:
description: The result of the describe, converted to ansible snake case style.
See http://boto3.readthedocs.io/en/latest/reference/services/ec2.html#EC2.Client.describe_nat_gateways for the response.
Expand Down Expand Up @@ -127,7 +127,7 @@ def main():
argument_spec.update(
dict(
filters=dict(default={}, type='dict'),
nat_gateway_ids=dict(default=[], type='list'),
nat_gateway_ids=dict(default=[], type='list', elements='str'),
)
)

Expand Down

0 comments on commit d26e0cc

Please sign in to comment.