Configuring aws-vault with password-store
There is this nice utility which helps you with managing AWS credentials called aws-vault. It is quite nice to use it as it allows ad-hoc login as a specific profile via web browser, without the need for entering your credentials or performing 3 step process to log in, just: aws-vault login profile Where “profile” is specific AWS profile, and voila, you’re in. Besides that, it also keeps your credentials safe in one of the supported backends. Personally I use MacOS keychain which is default on MacOS for saving credentials, but on my personal rigs, which all run linux, I prefer to have credentials in Password Store. That way I can sync credentials accross machines easily as well as manage and track them on the central place as I usually do with all my passwords. ...