Aaron Turner
Aaron Turner
Can you explain what limitation Cyberduck has which requires this? Basically, why are you using insecure hardcoded IAM credentials instead of the dynamic credentials provided via `aws-sso config-profiles`? If you...
If people don't use the AWS SDK then things don't work. Nothing I can do there. I'm still not sure why you can't just use a shell script or alias?...
I should ask, have you talked to Cyberduck to see if they can or will support `credential_process` ? https://docs.aws.amazon.com/cli/v1/userguide/cli-configure-sourcing-external.html
So I still don't understand why you can't just create a shell script or alias to "specify a default file". there are so many configuration options today that I actually...
## Updating the existing cacert.pem I'm guessing the two primary AWS SDK's people use aws-sso is Boto3 and Go. What is interesting is they handle the CA bundle very differently....
Looks like someone already built this, but it is EOL: https://github.com/mdbraber/acmeproxy There are a few forks with some changes which implement some fixes it seems? One of them may work...
This feature should not be necessary. You just need to set the `AWS_PROFILE` environment variable inside of IntelliJ and the AWS SDK will use the profile you specify. https://www.baeldung.com/intellij-idea-environment-variables Alternatively,...
I don't use IntelliJ myself, but I believe it will save the variable across multiple sessions? Shouldn't have to keep setting it? Alternatively, just define that test role with the...
"switch the profile"? users are using multiple IAM Roles and you want to switch the global/per user default role between them? I'm honestly a bit lost what your actual use...
Sure that works. Does mean a few things: 1. Creds are stored in clear text on disk. You seem okay with that. 2. All processes for that user now will...