amazon-web-servicesserverless-framework

Deployment using serverless framework is failing in Github Actions


Here is the problem - First of all what is this instance limit in serverless-dashboard (check the image) -> serverless-dashboard? is it possible to reduce it?

Secondly, I have created a serverless access key and provider in the serverless framework dashboard which is an AWS role, but while deploying through github actions, login worked fine and still aws credentials missing or nor provided error is coming. Serverless version is V4. How can I handle this issue?


Solution

  • An alternative i have been doing is you can actually use the below in my github action as a step , configure your role in AWS account role for github action permission (https://aws.amazon.com/blogs/security/use-iam-roles-to-connect-github-actions-to-actions-in-aws/)

          - name: Configure AWS Credentials
            # if: ${{ env.ACCOUNT == 'XXXX' }}
            uses: aws-actions/configure-aws-credentials@v1.7.0
            with:
              aws-region: ${{ env.REGION }}
              role-to-assume: arn:aws:iam::xxxx:role/github-action-XXXX