Hey there, I am trying to deploy from a github act...
# help
k
Hey there, I am trying to deploy from a github action and I am getting this error
Copy code
Need to perform AWS calls for account my-account, but no credentials have been configured
I did set the
AWS_ACCESS_KEY_ID
and
AWS_SECRET_ACCESS_KEY
using the
seed
generated keys.
Ok fixed this using
Copy code
- name: configure AWS credentials
        uses: aws-actions/configure-aws-credentials@v1
        with:
          aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
          aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
          aws-region: us-east-1
🤦‍♂️
f
Oh nice. I was confused a bit what you meant by seed generated keys.
k
Copy code
seed generated keys
Sorry I used seed to generate the AWS keys with the automated cloudformation stack (I was using seed and can’t use it for now because of memory limits)
f
Ah I see. Should be able to configure memory limit by next week.
I will keep you posted
k
No worries at all thanks 🙂
o
what is
- name: / uses: / with:...
notation? what kind of config is it?
k
This just just another step in my gh actions
It adds the necessary stuff to configure the AWS environment within the Gh action