UNPKG

serverless

Version:

Serverless Framework - Build web, mobile and IoT applications with serverless architectures using AWS Lambda, Azure Functions, Google CloudFunctions & more

23 lines (21 loc) 415 B
service: service provider: name: aws resources: Resources: HttpApi: Type: AWS::ApiGatewayV2::Api Properties: Name: dev-${self:service} ProtocolType: HTTP HttpApiStage: Type: AWS::ApiGatewayV2::Stage Properties: ApiId: Ref: HttpApi StageName: $default AutoDeploy: true Outputs: HttpApiId: Value: Ref: HttpApi