February 2019
Beginner
694 pages
18h 4m
English
In order to use Serverless with our AWS Account, we will need to set up our credentials on the command line. This step will require the information that we downloaded when we created our AWS user with programmatic access, in particular the API Access key ID, and the Secret access key.
To set up Serverless with our AWS credentials, execute the following on the command line:
serverless config credentials --provider aws --key <insert access key> --secret <insert secret key>
Here, we have specified configuration options for the credentials that Serverless will use to access the AWS API. The options that we have specified include aws as the API provider, as well as the API Access Key ID and Secret access key.
Once this ...
Read now
Unlock full access