|
|
|
|
|
by cnuss
1616 days ago
|
|
Totally agree re: complexity. My goal is that a few config steps in a GitHub repository and AWS makes a GitHub action able to do a wide variety of things (such as accessing multiple accounts) with very little upstart work. Storing Secrets in GitHub isn't technically insecure, and it's awesome it's provided as a free feature, but it's tedious and fragile. Someone (or something has to do various clicks and copy/pastes or API calls) to upload an access key into GitHub Secrets. It gets even worse if you have multiple accounts and then your Action Workflow file gets really gnarly if you simply pull credentials from ${{ secrets.* }}. Also, if you need to rotate your AWS access tokens, you open up a whole new can of worms, so why not remove credentials all together! Thanks for the question nodesocket, let me know if you have more questions or comments! |
|