Fork me on GitHub
#aws
<
2019-09-17
>
gerred12:09:25

is there an SSM parameter store lib people like? ednism looks nice, but was just thinking of using aws-api directly

gerred12:09:02

eh maybe I just re-build the functionality of ednism with aws-api, it brings in the whole aws-java-sdk-ssm and some other stuff.

Chris Bidler13:09:17

My experience so far has been that I use env vars for everything, and just write shell scripts to handle putting things into parameter store, and use the AWS infrastructure itself (mainly CloudFormation) to get the correct parameter store values into the process environment of my running code.

gerred13:09:21

^ that, unfortunately, will not work for my use case but that totally makes sense. that integration has helped me in the past. 😄

gerred13:09:14

I'm building a package for those who can't do that (say, Kubernetes users) to be able to resolve configs with aero or configuration other tooling from SSM instead of local EDN.

gerred13:09:45

if I was just using ECS alternately I'd just use the built-in injections

gerred13:09:34

plus what's nice about a lib like this is that I can eventually make it an adapter so Vault and conjur users can also use the same API.