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 = """
|
||||
- name: Send default notification message via SNS
|
||||
local_action:
|
||||
module: sns
|
||||
msg: "{{ inventory_hostname }} has completed the play."
|
||||
subject: "Deploy complete!"
|
||||
topic: "deploy"
|
||||
sns:
|
||||
msg: '{{ inventory_hostname }} has completed the play.'
|
||||
subject: Deploy complete!
|
||||
topic: deploy
|
||||
delegate_to: localhost
|
||||
|
||||
- name: Send notification messages via SNS with short message for SMS
|
||||
local_action:
|
||||
module: sns
|
||||
msg: "{{ inventory_hostname }} has completed the play."
|
||||
sms: "deployed!"
|
||||
subject: "Deploy complete!"
|
||||
topic: "deploy"
|
||||
sns:
|
||||
msg: '{{ inventory_hostname }} has completed the play.'
|
||||
sms: deployed!
|
||||
subject: Deploy complete!
|
||||
topic: deploy
|
||||
delegate_to: localhost
|
||||
"""
|
||||
|
||||
try:
|
||||
|
|
Loading…
Reference in a new issue