2

I am having problems configuring my AWS credentials on Serverless using my terminal. Once I place:

serverless config credentials --provider aws --key xx --secret xxx --profile serverless-admin2

After that the system responds "setting up aws..." and doesn't do anything else. Am I doing something wrong?

David Makogon
  • 69,407
  • 21
  • 141
  • 189
Jaime
  • 21
  • 1

1 Answers1

0

The command just only creates a new entry in your ~/.aws/credentials file. Thus to check if it worked, inspect ~/.aws/credentials and see if [serverless-admin2] profile was created with your aws keys.

If not, you can add the profile yourself there.

Marcin
  • 215,873
  • 14
  • 235
  • 294