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:
parent
3d15f622b0
commit
5e9b763937
1 changed files with 11 additions and 11 deletions
|
@ -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:
|
||||||
|
|
Loading…
Reference in a new issue