Securely Authenticating to AWS with GitHub Actions
Overview Connecting to your AWS account from GitHub actions does not require generating an API key and there is a simpler and secure way to authenticate. GitHub docs recommend using OIDC for authenticating from Actions. I also highly recommend this method! I have seen a ton of articles online where this is the demonstrated method of connecting from actions is still using an account key. This is definitely NOT the preferred and secured method of accessing your cloud resources. ...