An open API service indexing awesome lists of open source software.

https://github.com/infrablocks/docker-alertmanager-aws

An alertmanager image for AWS.
https://github.com/infrablocks/docker-alertmanager-aws

alertmanager aws aws-s3 docker docker-image image infrablocks

Last synced: 8 months ago
JSON representation

An alertmanager image for AWS.

Awesome Lists containing this project

README

          

# Docker Image - Alertmanager AWS

## Development

### Managing CircleCI keys

To encrypt a GPG key for use by CircleCI:

```bash
openssl aes-256-cbc \
-e \
-md sha1 \
-in ./config/secrets/ci/gpg.private \
-out ./.circleci/gpg.private.enc \
-k ""
```

To check decryption is working correctly:

```bash
openssl aes-256-cbc \
-d \
-md sha1 \
-in ./.circleci/gpg.private.enc \
-k ""
```