package
2.0.2
Repository: https://github.com/devlibx/gox-aws.git
Documentation: pkg.go.dev

# README

How to pull SSM var

There are times when you want to pull all SSM variable to run the code locally. You may have to export all of them OR set it in some IDE like IntelliJ. To get this you can use this utility whihc can dump the SSM params as export or key/value.

You can use this utility to pull SSM parameters. We dump these in 2 format:

git clone https://github.com/devlibx/gox-aws.git
cd gox-aws
  1. Dump which can be used as export
>> go run cmd/ssm/dump_ssm_params.go --path=<Any SSM path> --print=export
export MY_PASSWORD=something
  1. Dump which can be used as normal key/value pare
>> go run cmd/ssm/dump_ssm_params.go --path=<Any SSM path> --print=na
MY_PASSWORD=something

# Packages

No description provided by the author