summaryrefslogtreecommitdiffstats
path: root/docs/docsite/rst/userguide/notifications.rst
diff options
context:
space:
mode:
authorEthem Cem Özkan <ethemcem.ozkan@gmail.com>2024-06-02 04:48:56 +0200
committerGitHub <noreply@github.com>2024-06-02 04:48:56 +0200
commit37ad690d097df2d467a6a93d890abe8887481587 (patch)
treeb587f9f2cec1347a36412344ffdfb37b01b57486 /docs/docsite/rst/userguide/notifications.rst
parentModify the link to terraform_state inventory plugin (#15241) (diff)
downloadawx-37ad690d097df2d467a6a93d890abe8887481587.tar.xz
awx-37ad690d097df2d467a6a93d890abe8887481587.zip
Add AWS SNS notification support for webhook (#15184)
Support for AWS SNS notifications. SNS is a widespread service that is used to integrate with other AWS services(EG lambdas). This support would unlock use cases like triggering lambda functions, especially when AWX is deployed on EKS. Decisions: Data Structure - I preferred using the same structure as Webhook for message body data because it contains all job details. For now, I directly linked to Webhook to avoid duplication, but I am open to suggestions. AWS authentication - To support non-AWS native environments, I added configuration options for AWS secret key, ID, and session tokens. When entered, these values are supplied to the underlining boto3 SNS client. If not entered, it falls back to the default authentication chain to support the native AWS environment. Properly configured EKS pods are created with temporary credentials that the default authentication chain can pick automatically. --------- Signed-off-by: Ethem Cem Ozkan <ethemcem.ozkan@gmail.com>
Diffstat (limited to 'docs/docsite/rst/userguide/notifications.rst')
-rw-r--r--docs/docsite/rst/userguide/notifications.rst13
1 files changed, 13 insertions, 0 deletions
diff --git a/docs/docsite/rst/userguide/notifications.rst b/docs/docsite/rst/userguide/notifications.rst
index e7e8234111..ff7691c6fd 100644
--- a/docs/docsite/rst/userguide/notifications.rst
+++ b/docs/docsite/rst/userguide/notifications.rst
@@ -84,6 +84,7 @@ Notification Types
.. index::
pair: notifications; types
+ triple: notifications; types; AWS SNS
triple: notifications; types; Email
triple: notifications; types; Grafana
triple: notifications; types; IRC
@@ -101,6 +102,18 @@ Notification types supported with AWX:
Each of these have their own configuration and behavioral semantics and testing them may need to be approached in different ways. Additionally, you can customize each type of notification down to a specific detail, or a set of criteria to trigger a notification. See :ref:`ug_custom_notifications` for more detail on configuring custom notifications. The following sections will give as much detail as possible on each type of notification.
+AWS SNS
+-------
+
+The AWS SNS(https://aws.amazon.com/sns/) notification type supports sending messages into an SNS topic.
+
+You must provide the following details to setup a SNS notification:
+
+- AWS Region
+- AWS Access Key ID
+- AWS Secret Access Key
+- AWS SNS Topic ARN
+
Email
-------