mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
Remove useless quotes - notification/sns.py (#19169)
This commit is contained in:
committed by
John R Barker
parent
3d15f622b0
commit
5e9b763937
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user