title | description | integrations | categories | |||
---|---|---|---|---|---|---|
Manage emergency AWS access requests via Slack |
Submit emergency AWS access requests via Slack, which are then approved or denied based on a set of predefined conditions |
|
|
This project implements a break-glass request workflow that allows users to submit emergency access requests via Slack, which are then approved or denied based on a set of predefined conditions. The project integrates Slack and Jira with custom modals and messages.
- Users submit a
break-glass
request via a custom Slack modal. - The request is sent for approval to designated approvers.
- Approvers can approve or deny the request via Slack.
- The approval or denial is logged and the requester is notified.
- Initialize your connections through the UI
- Set the
APPROVAL_CHANNEL
project variable to a Slack channel where the AutoKitteh app is invited - Deploy the project
The workflow is triggered by using a Slack slash command with the following text: break-glass
. (Self-hosted only) The text of the command can be configured in autokitteh.yaml
.
Important
Ensure all connections (Slack, Jira, and AWS) are properly initialized before the workflow starts running.
- Install AutoKitteh
- Set up required integrations:
- Clone the repository:
git clone https://github.com/autokitteh/kittehub.git cd kittehub/break_glass
2. Start the AutoKitteh server:
```shell
ak up --mode dev
-
Deploy the project:
ak deploy --manifest autokitteh.yaml
The output will show your connection IDs, which you'll need for the next step. Look for lines like:
[exec] create_connection "break_glass/jira_connection": con_01j36p9gj6e2nt87p9vap6rbmz created [exec] create_connection "break_glass/slack_connection": con_01j36p9gj6e2nt87p9vap6rbmz created
In this example,
con_01j36p9gj6e2nt87p9vap6rbmz
is the connection ID. -
Initialize your connections using the CLI:
ak connection init jira_connection <connection ID> ak connection init slack_connection <connection ID>