diff options
author | beeankha <beeankha@gmail.com> | 2019-06-25 16:46:05 +0200 |
---|---|---|
committer | beeankha <beeankha@gmail.com> | 2019-07-23 17:47:19 +0200 |
commit | 0a0b09b394aaecf0a7ec6d8bb04b02b4c544568b (patch) | |
tree | eb4f34f1084b4e46800b0795875f7e555c9472f0 /docs/notification_system.md | |
parent | add tooling for basic testing of notification webhooks (diff) | |
download | awx-0a0b09b394aaecf0a7ec6d8bb04b02b4c544568b.tar.xz awx-0a0b09b394aaecf0a7ec6d8bb04b02b4c544568b.zip |
Update logic in send method to recognize password field in upgraded webhook notifications
Diffstat (limited to 'docs/notification_system.md')
-rw-r--r-- | docs/notification_system.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/notification_system.md b/docs/notification_system.md index 40adb5c8af..cc7cc2a7e5 100644 --- a/docs/notification_system.md +++ b/docs/notification_system.md @@ -218,13 +218,13 @@ https://gist.github.com/matburt/73bfbf85c2443f39d272 The link below shows how to define an endpoint and parse headers and json content. It doesn't show how to configure Flask for HTTPS, but is fairly straightforward: http://flask.pocoo.org/snippets/111/ -You can also link an httpbin service to the development environment for testing webhooks using: +You can also link an `httpbin` service to the development environment for testing webhooks using: ``` make docker-compose-notifications ``` -This will create an `httpbin` service reachable from the awx container at `http://httpbin/post`, `http://httpbin/put`, etc. Outside of the container, you can reach the service at `http://localhost:8204`. +This will create an `httpbin` service reachable from the AWX container at `http://httpbin/post`, `http://httpbin/put`, etc. Outside of the container, you can reach the service at `http://localhost:8204`. ## Grafana |