This package implements a simple Slack plugin using the Teleport Access API. A slack channel receives an alert when an access request is created.
See setup instructions on Teleport's website
Detailed install steps are provided in our docs.
There are several methods to installing and using the Teleport Slack Plugin:
-
Use a precompiled binary
-
Use a docker image
-
Install from source
Get the plugin distribution.
$ curl -L https://get.gravitational.com/teleport-access-slack-v7.0.2-linux-amd64-bin.tar.gz
$ tar -xzf teleport-access-slack-v7.0.2-linux-amd64-bin.tar.gz
$ cd teleport-access-slack
$ ./install
$ docker pull quay.io/gravitational/access-plugin-slack:9.0.2
$ docker run quay.io/gravitational/access-plugin-slack:9.0.2 version
teleport-slack v9.0.2 git:teleport-slack-v9.0.2-0-g9e149895 go1.17.8
For a list of available tags, visit https://quay.io/
To build the plugin from source you need Go and make
.
$ git clone https://github.com/gravitational/teleport-plugins.git
$ cd teleport-plugins/access/slack
$ make
$ ./build/teleport-slack start
Using Web UI or tctl
CLI utility, create the role access-slack
and the user access-slack
belonging to the role access-slack
. You may use the following YAML declarations.
kind: role
metadata:
name: access-slack
spec:
allow:
rules:
- resources: ['access_request']
verbs: ['list', 'read', 'update']
version: v5
kind: user
metadata:
name: access-slack
spec:
roles: ['access-slack']
version: v2
For the plugin to connect to Auth Server, it needs an identity file containing TLS/SSH certificates. This can be obtained with tctl:
$ tctl auth sign --auth-server=AUTH-SERVER:PORT --format=file --user=access-slack --out=/var/lib/teleport/plugins/slack/auth_id --ttl=8760h
Here, AUTH-SERVER:PORT
could be localhost:3025
, your-in-cluster-auth.example.com:3025
, your-remote-proxy.example.com:3080
or your-teleport-cloud.teleport.sh:443
. For non-localhost connections, you might want to pass the --identity=...
option to authenticate yourself to Auth Server.
Slack Plugin uses a config file in TOML format. Generate a boilerplate config by running the following command:
$ teleport-slack configure > /etc/teleport-slack.yml
Then, edit the config as needed.
# Example slack plugin configuration TOML file
[teleport]
# Teleport Auth/Proxy Server address.
# addr = "example.com:3025"
#
# Should be port 3025 for Auth Server and 3080 or 443 for Proxy.
# For Teleport Cloud, should be in the form "your-account.teleport.sh:443".
# Credentials generated with `tctl auth sign`.
#
# When using --format=file:
# identity = "/var/lib/teleport/plugins/slack/auth_id" # Identity file
#
# When using --format=tls:
# client_key = "/var/lib/teleport/plugins/slack/auth.key" # Teleport TLS secret key
# client_crt = "/var/lib/teleport/plugins/slack/auth.crt" # Teleport TLS certificate
# root_cas = "/var/lib/teleport/plugins/slack/auth.cas" # Teleport CA certs
[slack]
# Slack Bot OAuth token
token = "xoxb-11xx"
[role_to_recipients]
# Map roles to recipients.
#
# Provide slack user_email/channel recipients for access requests for specific roles.
# role.suggested_reviewers will automatically be treated as additional email recipients.
# "*" must be provided to match non-specified roles.
#
# "dev" = "devs-slack-channel"
# "*" = ["admin@email.com", "admin-slack-channel"]
[log]
output = "stderr" # Logger output. Could be "stdout", "stderr" or "/var/lib/teleport/slack.log"
severity = "INFO" # Logger severity. Could be "INFO", "ERROR", "DEBUG" or "WARN".
With the config above, you should be able to run the bot invoking
$ teleport-slack start
or with docker:
$ docker run -v <path/to/config>:/etc/teleport-slack.toml quay.io/gravitational/access-plugin-slack:9.0.2 start
Once your Slack plugin has been configured, you can verify that it's working
correctly by using tctl request create <user> --roles=<roles>
to simulate an
access request. If everything is working as intended, a message should appear
in the channel specified under slack.channel
.
Select Deny
and verify that the request was indeed denied using
tctl request ls
.