-
-
Save EtienneDepaulis/7e3bf4e4beb666e092ac158be5ffc945 to your computer and use it in GitHub Desktop.
CircleCi notifications article - SSM config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
brew install awscli | |
aws configure | |
aws --region eu-west-1 ssm put-parameter --name circleci-notifications-slack-token --value top-secret-value --type String |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
service: lambda-circleci-notifications | |
provider: | |
name: aws | |
runtime: ruby2.5 | |
stage: dev | |
region: eu-west-1 | |
environment: | |
SLACK_TOKEN: ${ssm:circleci-notifications-slack-token} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment