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 b846e1e commit f27af03
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions plugins/modules/ec2_vpc_vgw_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_vgw_info
version_added: 1.0.0
Expand All @@ -33,7 +33,7 @@
'''

EXAMPLES = '''
EXAMPLES = r'''
# # Note: These examples do not set authentication details, see the AWS Guide for details.
- name: Gather information about all virtual gateways for an account or profile
Expand All @@ -58,7 +58,7 @@
register: vgw_info
'''

RETURN = '''
RETURN = r'''
virtual_gateways:
description: The virtual gateways for the account.
returned: always
Expand Down Expand Up @@ -138,7 +138,7 @@ def main():
argument_spec.update(
dict(
filters=dict(type='dict', default=dict()),
vpn_gateway_ids=dict(type='list', default=None)
vpn_gateway_ids=dict(type='list', default=None, elements='str')
)
)

Expand Down

0 comments on commit f27af03

Please sign in to comment.