Configuring AWS for Using Lambda
At a recent conference, it was discovered that one of the hardest parts of using AWS Lambda was getting it set up. Here's a step-by-step guide of how to do it.
Join the DZone community and get the full member experience.
Join For FreeDuring the Software Craftsmanship and Testing Conference UK, Mash ran a session on AWS Lambda with examples written in Java and Python. Some other people also tried to do it in Node.js. The session is here.
The first part, mostly accidental complexity, is how to setup the account to be able to use these services. This is the part that most people struggled with, so here is a step-by-step guide.
Setting up Your Payment Method
- Connect to the AWS Console.
- Click on your name (top right), then "My Account."
On the left menu, click "Payment Methods."
- Add a debit/credit card. This is very important, as you could go over the free tier and they would need to charge you. But with the levels of activity that we'll be using, you are included in the free tier.
Setting Up Your AWS Account
- Connect to the AWS Console.
- Go to Services, choose IAM.
- Create a "group" to hold these users and policies.
- Click "Create a new group."
- Pick a name for the group.
- Click next, choose these policies:
- AWSLambdaFullAccess
- IAMFullAccess
- AmazonAPIGatewayAdministrator
- Next. See this page:
- Click "Create group."
- Find your new group.
- Click on the "Users" tab. It won't have any users, as you just created it.
- To create new users, go to the menu on the left, select "Users" and click the button "Create new users."
- You can generate as many users as you want. For a test, one is enough. Pick a name for those users. In my case, "test1_" and "test2_." Then check off "Generate an access key for each user."
- Click "Show User Security Credentials" to see the credentials. You'll use those to authenticate against AWS.
- In any case, it's better to download the credentials.
- Create a CSV with the tokens.
- Go to Groups again.
- Click the "users" tab, then "Add users to this group."
- Find or filter the users that you want, then select them.
- Click "Add Users."
Installing and Configuring the AWS CLI
- Find the installer at AWS CLI
- Configure it with this help page. Here's a sample of how it might look:
- Check that the CLI is correctly configured:
$ aws lambda list-functions { "Functions": [] }
- You can now use the services. The series continue at the next post.
$ aws configure
AWS Access Key ID [****************TEST]: ##$YOUR_ACCESS_KEY##
AWS Secret Access Key [****************TEST]: ##$YOUR_SECRET_ACCES_KEY##
Default region name [eu-west-1]: eu-west-1 #or any other zone
Default output format [None]: #just type enter
This article was first published on the Codurance blog.
Related Refcard: Getting Started With Cloud Computing
Published at DZone with permission of Alvaro Garcia, DZone MVB. See the original article here.
Opinions expressed by DZone contributors are their own.
Comments