unicreds
unicreds copied to clipboard
unicreds is a CLI which manages secrets in AWS using DynamoDB and KMS.
This updates the unicreds package to use the AWS Instance Metadata Service (IMDS) version 2 when retrieving the region data. The main change is in the getRegion function, which now...
You currently cannot install `unicreds` if you have a MAC with an M1 processor (arm64) without building from source (which for me was not really straighforward), unless you have [Rosetta](https://en.wikipedia.org/wiki/Rosetta_(software)#Rosetta_2)....
The new go modules feature expects tagged versions to be prefixed with a 'v'. Since the latest release, 1.7.0, is missing the prefix, the `go` command finds v1.5.0 as the...
Adding 2 missing deps to makefile
it took me a while to figure out what is going on, my issue was missing permission on `GetItem` and I was getting `Secret Not Found` error... while in fact...
it would be great if there was a templating feature similar the one implemented here https://github.com/winebarrel/gcredstash . this way go templating could be leveraged to inject secrets into all types...
This is a nit but if the fetch of the dynamo item returns an error, right now it is ignored. This PR fixes that.
This is just something that caught my eye reading the code. There is a redundant type declaration in that function declaration. This PR fixes that ;)
I noted that 3fbd8ba attempts to resolve the error one gets when region is not passed on the command line: ``` ⨯ failed error=MissingRegion: could not find region configuration ```...