Skip to content

Get AWS DMS replication progress and send it to slack running on Lambda.

Notifications You must be signed in to change notification settings

rluisr/dms-progress

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

dms-progress

Get AWS DMS replication progress and send it to slack running on Lambda.

Usage

  1. Clone
  2. Build
  3. Upload
GOOS=linux GOARCH=amd64 go build -a -tags netgo -installsuffix netgo --ldflags '-extldflags "-static"' -o main && zip main.zip ./main && mv -f main.zip ~/Desktop/ && rm -rf main

handler is main and you have to set these environment variables.

  • SLACK_INCOMING_URL
  • SLACK_CHANNEL
  • REGION

and need creating policy of dms.

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Effect": "Allow",
            "Action": "dms:*",
            "Resource": "*"
        }
    ]
}

About

Get AWS DMS replication progress and send it to slack running on Lambda.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages