Skip to content

gmattcrowley/aws-param-inject

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

5121acf · Apr 6, 2018

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

aws-param-inject

golang script for config injection of AWS SSM parameter-store values.

install:

sudo curl -L -o /usr/local/bin/param-inject https://github.com/rbi13/aws-param-inject/releases/download/0.0.2/aws-param-inject-linux-amd64
sudo chmod +x /usr/local/bin/param-inject

example:

# Treat the binary as a passthrough script
export AWS_REGION='us-east-1'
export AWS_ENV_PATH='/production/app1'
param-inject node -e "console.log(process.env)"
# OR
AWS_REGION='us-east-1' AWS_ENV_PATH='/production/app1/' param-inject node -e "console.log(process.env)"

Use multiple namespaces by seperating them with semi-colons:

AWS_ENV_PATH='/production/all;/production/app1'

About

AWS SSM Parameter Injector

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Go 82.8%
  • Shell 14.7%
  • Makefile 2.5%