We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When using the permission id-token: write It seems that that this action automatically goes down the OIDC flow This is not always intended behaviour i.e. when using both OIDC for another action and IAM instance roles within the same job. Looks like these lines are responsible https://github.com/aws-actions/configure-aws-credentials/blob/main/src/assumeRole.ts#L152-L153
id-token: write
Should be allowed to use both OIDC and non OIDC AWS credentials flow in same action
AWS auth fails as tries to go down OIDC flow
Create job with id-token: write when you do not want to use the OIDC flow
Provide explicit OIDC option and do not reply on presence of token(option:true && webToken:true) ?
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
When using the permission
id-token: write
It seems that that this action automatically goes down the OIDC flow
This is not always intended behaviour i.e. when using both OIDC for another action and IAM instance roles within the same job.
Looks like these lines are responsible
https://github.com/aws-actions/configure-aws-credentials/blob/main/src/assumeRole.ts#L152-L153
Regression Issue
Expected Behavior
Should be allowed to use both OIDC and non OIDC AWS credentials flow in same action
Current Behavior
AWS auth fails as tries to go down OIDC flow
Reproduction Steps
Create job with
id-token: write
when you do not want to use the OIDC flowPossible Solution
Provide explicit OIDC option and do not reply on presence of token(option:true && webToken:true) ?
Additional Information/Context
No response
The text was updated successfully, but these errors were encountered: