Merge pull request #386 from rhorer/patch-1
Update twilio.py module name in Examples
This commit is contained in:
commit
04aa579f1f
1 changed files with 2 additions and 2 deletions
|
@ -57,14 +57,14 @@ author: Matt Makai
|
||||||
EXAMPLES = '''
|
EXAMPLES = '''
|
||||||
# send a text message from the local server about the build status to (555) 303 5681
|
# send a text message from the local server about the build status to (555) 303 5681
|
||||||
# note: you have to have purchased the 'from_number' on your Twilio account
|
# note: you have to have purchased the 'from_number' on your Twilio account
|
||||||
- local_action: text msg="All servers with webserver role are now configured."
|
- local_action: twilio msg="All servers with webserver role are now configured."
|
||||||
account_sid={{ twilio_account_sid }}
|
account_sid={{ twilio_account_sid }}
|
||||||
auth_token={{ twilio_auth_token }}
|
auth_token={{ twilio_auth_token }}
|
||||||
from_number=+15552014545 to_number=+15553035681
|
from_number=+15552014545 to_number=+15553035681
|
||||||
|
|
||||||
# send a text message from a server to (555) 111 3232
|
# send a text message from a server to (555) 111 3232
|
||||||
# note: you have to have purchased the 'from_number' on your Twilio account
|
# note: you have to have purchased the 'from_number' on your Twilio account
|
||||||
- text: msg="This server's configuration is now complete."
|
- twilio: msg="This server's configuration is now complete."
|
||||||
account_sid={{ twilio_account_sid }}
|
account_sid={{ twilio_account_sid }}
|
||||||
auth_token={{ twilio_auth_token }}
|
auth_token={{ twilio_auth_token }}
|
||||||
from_number=+15553258899 to_number=+15551113232
|
from_number=+15553258899 to_number=+15551113232
|
||||||
|
|
Loading…
Reference in a new issue