Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/deptno/action-aws-ssm-to-dotenv

🔐Github Action. create `.env` via AWS SSM parameters path
https://github.com/deptno/action-aws-ssm-to-dotenv

action actions aws ci dotenv environment github parameters ssm variables

Last synced: 2 days ago
JSON representation

🔐Github Action. create `.env` via AWS SSM parameters path

Awesome Lists containing this project

README

        

# action aws ssm to dotenv
![](https://github.com/deptno/action-aws-ssm-to-dotenv/workflows/v1/badge.svg)

create `.env` or **shell script** via AWS SSM parameters path

## usage

```yaml
- uses: deptno/[email protected]
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} # required
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} # required
AWS_DEFAULT_REGION: ap-northeast-2 # required
with:
ssm-path: /opensource/action-aws-ssm-to-dotenv # required
format: shell
output: .env.development
prefix: SSM_
decryption: true
```

⚠️ if output file already exists `action_aws_ssm_to_dotenv` will append data to output file(1.3.0)

## option

### ssm-path(required)
AWS Systems Manager > Parameter Store > Path

### format(default `dotenv`)
optional, default=dotenv
- dotenv: KEY="value" (default)
- shell: export KEY="value"
- yaml: KEY: "value"

### output(default `.env`)
output filename

### prefix(optional)
add prefix to exported variable name
eg) `prefix: ACTION_` will export `ACTION_ENV_VAR="value"`

### decryption(optional)
should parameters be decrypted?

[.github/workflows/test.yml](.github/workflows/test.yml)

## cabinet

---
### License
MIT