1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Remove useless quotes - notification/sns.py (#19169)

This commit is contained in:
Fabio Alessandro Locati 2016-12-11 23:14:00 +01:00 committed by John R Barker
parent 3d15f622b0
commit 5e9b763937

View file

@ -87,19 +87,19 @@ requirements:
EXAMPLES = """ EXAMPLES = """
- name: Send default notification message via SNS - name: Send default notification message via SNS
local_action: sns:
module: sns msg: '{{ inventory_hostname }} has completed the play.'
msg: "{{ inventory_hostname }} has completed the play." subject: Deploy complete!
subject: "Deploy complete!" topic: deploy
topic: "deploy" delegate_to: localhost
- name: Send notification messages via SNS with short message for SMS - name: Send notification messages via SNS with short message for SMS
local_action: sns:
module: sns msg: '{{ inventory_hostname }} has completed the play.'
msg: "{{ inventory_hostname }} has completed the play." sms: deployed!
sms: "deployed!" subject: Deploy complete!
subject: "Deploy complete!" topic: deploy
topic: "deploy" delegate_to: localhost
""" """
try: try: