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 goneri committed Sep 21, 2022
1 parent 3888fcb commit eb5516b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions plugins/modules/cloudwatchevent_rule.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@
required: false
'''

EXAMPLES = '''
EXAMPLES = r'''
- community.aws.cloudwatchevent_rule:
name: MyCronTask
schedule_expression: "cron(0 20 * * ? *)"
Expand All @@ -131,7 +131,7 @@
state: absent
'''

RETURN = '''
RETURN = r'''
rule:
description: CloudWatch Event rule data.
returned: success
Expand Down Expand Up @@ -430,7 +430,7 @@ def main():
default='present'),
description=dict(),
role_arn=dict(),
targets=dict(type='list', default=[]),
targets=dict(type='list', default=[], elements='dict'),
)
module = AnsibleAWSModule(argument_spec=argument_spec)

Expand Down

0 comments on commit eb5516b

Please sign in to comment.