Serverless Framework에서 API Gateway 바이너리 지원 설정
1738 단어 APIGatewayServerlessFrameworkAWS
그 설정을 Serverless Framework에서 정의했습니다.
ServerlessFramework의 기본값은 바이너리 지원 구성 매개 변수를 제공하지 않으므로 플러그인을 사용합니다.
조사한 결과 현시점에서는 이하의 2개의 플러그인이 발견되었습니다.
첫 번째 serverless-apigw-binary는 시도했을 때 배포가 성공했지만 API 게이트웨이에 반영되지 않았기 때문에 두 번째 serverless-plugin-custom-binary를 사용하는 것입니다. 했습니다.
환경
$ npm -v
5.5.1
$ serverless -v
1.22.0
설정 방법
플러그인 설치
$ npm install --save-dev serverless-plugin-custom-binary
설정 추가
serverless.ymlplugins:
- serverless-plugin-custom-binary
custom:
apigatewayBinary:
types:
- multipart/form-data
배포!
$ serverless deploy
배포가 완료되면 API Gateway 콘솔에서 확인하면 제대로 구성됩니다.
이상입니다.
Reference
이 문제에 관하여(Serverless Framework에서 API Gateway 바이너리 지원 설정), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/ykarakita/items/6e49e33eb363add56f0b
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
$ npm -v
5.5.1
$ serverless -v
1.22.0
플러그인 설치
$ npm install --save-dev serverless-plugin-custom-binary
설정 추가
serverless.yml
plugins:
- serverless-plugin-custom-binary
custom:
apigatewayBinary:
types:
- multipart/form-data
배포!
$ serverless deploy
배포가 완료되면 API Gateway 콘솔에서 확인하면 제대로 구성됩니다.
이상입니다.
Reference
이 문제에 관하여(Serverless Framework에서 API Gateway 바이너리 지원 설정), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/ykarakita/items/6e49e33eb363add56f0b텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)