cloudformation
-
[번역] AWS SAM Template ConceptsInfra/AWS 2019. 8. 30. 13:14
원문 AWS SAM을 사용하여 Serverless 어플리케이션을 만들때, 주 목표는 Serverless 어플리케이션의 구조를 표현하는 AWS SAM 파일을 작성하는 것이다. AWS SAM 템플릿 파일은 YAML과 JSON으로 구성되어지며 AWS Serverless Model Specification 에서 확인 할 수 있다. Serverless 어플리케이션을 이루는 모든 AWS 리소스들의 선언을 위한 템플릿으로 사용한다. AWS SAM 템플릿은 AWS CloudFormation 템플릿의 확장이다. 그 말은, AWS CloudFormation 템플릿에서 선언할 수 있는 어떤 리소스들도 AWS SAM 템플릿에서 또한 선언 할 수 있다. 추가적으로, AWS SAM으로부터 제공되는 추가적인 리소스 타입들도 Ser..
-
Announcing WebSocket APIs in Amazon API GatewayInfra/AWS 2019. 8. 27. 16:41
아래의 serverless websocket 튜토리얼을 진행하는데 https://codeburst.io/how-to-build-a-react-chat-app-with-aws-api-gateway-websockets-and-cognito-custom-authorizer-6f84f2da47ec How to build a React chat app with AWS API Gateway WebSockets, Custom Lambda Authorizer AWS announced the launch of a widely-requested feature: WebSockets for Amazon API Gateway few days ago… codeburst.io aws에서 제공하는 기본 예제를 선행학습으로 해야해서 ..
-
[aws] CodeStar로 serverless(lambda) node.js express 서버 배포하기Infra/AWS 2019. 7. 29. 17:16
기존 node.js 서버를 serverless로 배포하는 방법을 찾아보다 알게된 AWS CodeStar 아직 우리 서비스에 적용할지 말지는 결정되지 않았지만, 미리 한번 알아본다는 차원에서 서버를 적용시켜보았다. 1. aws CodeStar 페이지 접속 2. Node.js Express.js Lambda 템플릿 선택 3. 프로젝트명을 입력하고 저장소는 AWS CodeCommit으로 한다.(Github 사용시 Github 선택) 4. 생성된 저장소 주소를 복사한다. 5. git clone 멍령어로 프로젝트를 가져온다. 6.기존 (나의)node.js (express)프로젝트를 가져온다. 7.package.json 파일에 관련 모듈들을 추가한다. 8.루트 폴더에 있는 index.js 파일을 아래와같이 수정한다..