본문 바로가기

AWS

AWS Lambda - The Serverless Framework and Installing

### The Serverless Framework

- Serverless Framework(https://serverless.com/) aims to ease the pain of creating, deploying, managing and debugging Lambda functions

- It itegrates well with CI/CD tools

- It has CloudFormation support so your entire stack can be deployed using this Framework



### Installing Serverless

1. Install dependenicies (node & AWS CLI)

2. Install the serverless framework

- npm install -g serverless // g means global

- serverless config setting

3. Setting up AWS for the 'serverless-admin' user

- IAM

- Users -> Add user -> Programmatic access check -> Attach existing policies directly -> AdministratorAccess

4. Download credentials on your machine

5. Setup Serverless to use these credentials




'AWS' 카테고리의 다른 글

AWS Lambda - AWS provider credentials not found 해결  (0) 2019.02.25
AWS 보안 설정  (0) 2019.02.21
AWS Lambda Overview  (0) 2019.02.21
AWS Lambda 공부 시작  (0) 2019.02.21