Skip to content

During Tuesday Tech Talk at 540, someone explores a new technology with the team and we discuss over an extended lunch. This was my talk on serverless, getting started and deploying your first API, later we deployed an Alexa skill template

Notifications You must be signed in to change notification settings

harrisjb/serverless_demo

Repository files navigation

What you'll need

  1. Amazon developer account
  2. AWS Keys for a user with (FYI if you have an admin user it will work):
   IAM Full Access
   Api Gateway Admin
   Lambda Full Access

As well as the custom permission:

{
    "Statement": [
        {
            "Effect": "Allow",
            "Action": [
                "cloudformation:CreateStack",
                "cloudformation:UpdateStack"
            ],
            "Resource": [
                "*"
            ]
        }
    ]
}
  1. AWS CLI tool if you don't have it

brew install awscli

Configure using aws configure and give it your keys, use us-east-1 for region and json for default format

Slides

Getting Started

  1. Make sure you have an AWS account set up https://aws.amazon.com

  2. Make sure you have an AWS developer account set up https://developer.amazon.com/

  3. Each directory is a different serverless framework or project, cd into the directories for instructions in the README files

About

During Tuesday Tech Talk at 540, someone explores a new technology with the team and we discuss over an extended lunch. This was my talk on serverless, getting started and deploying your first API, later we deployed an Alexa skill template

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published