Skip to content

patternmatch/aws-drift-detector-slack

Repository files navigation

CloudFormation drift detector to Slack

How it works

  1. CloudWatch triggers DiscoverStacks Lambda function.
  2. DiscoverStacks Lambda function gets stacks from CloudFormation.
  3. DiscoverStacks Lambda will split all of those stacks into smaller batches (for example 10 stacks per batch) and publish them to the SQS FIFO queue with the same MessageGroupID to prevent parallel invocations.
  4. DetectDrift Lambda function will be triggered by the FIFO queue and will perform actual drift detection on stacks.
  5. After drift detection, DetectDrift Lambda will invoke SendSlackNotification Lambda function asynchronously, and this Lambda will send an appropriate message to the Slack.

diagram

Parameters

  • SlackWebhook - Webhook URL for pushing messages to Slack.
  • Cron - How often drift detection should be run (eg. every twelve hours 0 0 */12 * ? * more info here).
  • ShowInSyncResources - Switch to display resources that have no drift (in sync), the default value is false.
  • ShowInSyncStacks - Switch to display stacks that have no drift (in sync), the default value is false.
  • StackRegex - Defines which stacks should be scanned for resource drift (the default value is .*).
  • StackBatches - Number that indicates how many stacks should be send to SQS in one batch (the default value is 10). The duration of drift detection depends very much on the specific stack, some stacks have more resources, others less. When stack will have a lot of resources then the parameter should be decreased.
  • DriftDetectionMaxRetries - Number indicating how many retries to make after an unsuccessful drift detection (the default value is 5)

More details can be found at https://driftdetector.com

Local setup

Prerequisites:

  • Python3
  • Python virtualenv

Install dependencies by running:

pip install -r requirements.txt

Testing

Executing unit tests:

make test

About

Serverless application to post information about CloudFormation stacks to Slack

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published