mirror of
https://github.com/github/codeql.git
synced 2025-12-30 23:58:15 +01:00
19 lines
433 B
YAML
19 lines
433 B
YAML
AWSTemplateFormatVersion: '2010-09-09'
|
|
Transform: 'AWS::Serverless-2016-10-31'
|
|
Description: 'Serverless thing'
|
|
|
|
Globals:
|
|
Api:
|
|
Cors:
|
|
AllowMethods: "'*'"
|
|
AllowHeaders: "'*'"
|
|
AllowOrigin: "'*'"
|
|
|
|
Resources:
|
|
OrderManagerJsFunction:
|
|
Type: 'AWS::Serverless::Function'
|
|
Properties:
|
|
FunctionName: MY-SERVERLESS-THING
|
|
Handler: mylibrary.handler
|
|
Runtime: nodejs12.x
|
|
CodeUri: backend/src/ |