You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I create an s3 secret with credential process, like
D create persistent secret s3_secret(type s3, provider credential_chain, chain process);
What I expect?
This should run the credential process defined in ~/.aws/config to get the fresh credentials.
What happens?
The stored secret is a secret at the time of creation of that persistent secret.
This is going to fail next time as credential has expired by that time. This limits the use of persistent secret and storing a long term secret in file is neither good practice and nor recommended by Aws.
The persistent secret can be made useful if at the start of session, it runs the credential process to refresh it. Bonus if it can run the process in background for long running session.
The text was updated successfully, but these errors were encountered:
I create an s3 secret with credential process, like
What I expect?
This should run the credential process defined in ~/.aws/config to get the fresh credentials.
What happens?
The stored secret is a secret at the time of creation of that persistent secret.
This is going to fail next time as credential has expired by that time. This limits the use of persistent secret and storing a long term secret in file is neither good practice and nor recommended by Aws.
The persistent secret can be made useful if at the start of session, it runs the credential process to refresh it. Bonus if it can run the process in background for long running session.
The text was updated successfully, but these errors were encountered: