create .env
or shell script via AWS SSM parameters path
- uses: almerindo/action-env-from-aws-ssm
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
action_aws_ssm_to_dotenv
will append data to output file(1.3.0)
AWS Systems Manager > Parameter Store > Path
optional, default=dotenv
- dotenv: KEY="value" (default)
- shell: export KEY="value"
- yaml: KEY: "value"
- configmap: like the yaml formatter (KEY: "value") example:
apiVersion: v1
kind: ConfigMap
metadata:
name: ${KUBE_NAME}
namespace: ${KUBE_NAME}-env-cm
data:
NEW_RELIC_ENABLED: false
NODE_ENV: STAGE
output filename
add prefix to exported variable name
eg) prefix: ACTION_
will export ACTION_ENV_VAR="value"
MIT