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

https://github.com/apptension/article-chamber


https://github.com/apptension/article-chamber

Last synced: 4 months ago
JSON representation

Awesome Lists containing this project

README

        

# Manage AWS ECS environment variables with Chamber

This is an example code that shows how to use environment variables on AWS ECS loaded from AWS SSM Parameter Store using
Chamber library.

It is a part of an article: **[How to manage AWS ECS environment variables with Chamber?](https://www.apptension.com/blog-posts/how-to-manage-aws-ecs-environment-variables-with-chamber?utm_source=github&utm_medium=linkbuilding&utm_campaign=links)**

### Commands

**Run the local environment**:
```sh
docker-compose up
```

**Deploy infrastructure**:
```sh
cd infra
yarn build
cdk bootstrap
ENV_NAME=stage cdk deploy --all
```

**Destroy infrastructure**:
```sh
ENV_NAME=stage cdk destroy --all
```