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
Hi,
Im using below script to Deploy EB using assume role I'm i doing anything wrong
The text was updated successfully, but these errors were encountered:
@Purushotham-grip , This issue has a solution. I have not verified it yet but someone confirmed it worked for them: #110
Sorry, something went wrong.
I think you need just to output the AWS credentials after assume Role:
- name: Configure AWS credentials from Production account uses: aws-actions/configure-aws-credentials@v4 id: creds with: role-to-assume: ${{ secrets.IAM_ROLE_ARN }} aws-region: ${{ env.REGION }} role-session-name: DeploySession output-credentials: true
No branches or pull requests
Hi,
Im using below script to Deploy EB using assume role I'm i doing anything wrong
uses: einaregilsson/beanstalk-deploy@v13
with:
aws_role_arn: ${{ steps.assume_role.outputs.role_arn }}
application_name: ${{ github.event.inputs.APPLICATION_NAME }}
version_label: '${{ steps.extract_branch.outputs.branch }}-${{ steps.format_time.outputs.replaced }}'
region: ap-south-1
deployment_package: deploy.zip
The text was updated successfully, but these errors were encountered: