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 Oct 23, 2024
1 parent 563d909 commit 86301df
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions plugins/modules/ec2_vpc_peering_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_peering_info
short_description: Retrieves AWS VPC Peering details using AWS methods.
version_added: 1.0.0
Expand All @@ -33,7 +33,7 @@
'''

EXAMPLES = '''
EXAMPLES = r'''
# Simple example of listing all VPC Peers
- name: List all vpc peers
community.aws.ec2_vpc_peering_info:
Expand All @@ -60,7 +60,7 @@
register: pending_vpc_peers
'''

RETURN = '''
RETURN = r'''
result:
description: The result of the describe.
returned: success
Expand Down Expand Up @@ -107,7 +107,7 @@ def main():
argument_spec.update(
dict(
filters=dict(default=dict(), type='dict'),
peer_connection_ids=dict(default=None, type='list'),
peer_connection_ids=dict(default=None, type='list', elements='str'),
)
)

Expand Down

0 comments on commit 86301df

Please sign in to comment.