mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Improve quotes - notification/nexmo.py (#19168)
This commit is contained in:
parent
5e9b763937
commit
64e4c2798c
1 changed files with 3 additions and 3 deletions
|
@ -64,15 +64,15 @@ options:
|
|||
|
||||
EXAMPLES = """
|
||||
- name: Send notification message via Nexmo
|
||||
local_action:
|
||||
module: nexmo
|
||||
nexmo:
|
||||
api_key: 640c8a53
|
||||
api_secret: 0ce239a6
|
||||
src: 12345678901
|
||||
dest:
|
||||
- 10987654321
|
||||
- 16789012345
|
||||
msg: "{{ inventory_hostname }} completed"
|
||||
msg: '{{ inventory_hostname }} completed'
|
||||
delegate_to: localhost
|
||||
"""
|
||||
|
||||
import urllib
|
||||
|
|
Loading…
Reference in a new issue