Simple Karma Bot
Follow these steps to setup a simple karma point tracker using Slack, AWS, and Terraform.
- Create a new slack app using the following manifest:
display_information:
name: Simple Karma Bot
description: Keeping track of team collaboration and thanks.
background_color: "#000000"
features:
bot_user:
display_name: Simple Karma Bot
always_online: true
oauth_config:
scopes:
bot:
- channels:history
- chat:write
- chat:write.customize
- groups:history
- users:read
settings:
event_subscriptions:
bot_events:
- message.channels
- message.groups
interactivity:
is_enabled: true
org_deploy_enabled: false
socket_mode_enabled: true
token_rotation_enabled: false
- Create an app level token with
connections:write
Create a file called .env
with the following variables:
SLACK_SIGNING_SECRET=<KEY_HERE>
SLACK_BOT_TOKEN=<KEY_HERE>
SLACK_APP_TOKEN=<KEY_HERE>
You can find these secret values in the slack api app settings
This is used to push the docker image to AWS ECR to be used by the container.
export SKB_ECR_URL="<VALUE_FROM_AWS>"