Spaces:
Running
on
Zero
Running
on
Zero
fastapi_django_main_live
/
routers
/20240607144840_python_sql_U7a972c5cc46e966de21ff1cd3adc6d52
/sam-template.yaml
AWSTemplateFormatVersion: '2010-09-09' | |
Transform: AWS::Serverless-2016-10-31 | |
Resources: | |
CRUDFunction: | |
Type: AWS::Serverless::Function | |
Properties: | |
FunctionName: !Sub 'crud-function-${AWS::Region}' | |
Runtime: python3.9 | |
Handler: app.wsgi.application | |
Code: | |
S3Bucket: !Sub 'crud-bucket-${AWS::Region}' | |
S3ObjectKey: 'app.zip' | |
Environment: | |
BUCKET_NAME: !Sub 'crud-bucket-${AWS::Region}' | |
Events: | |
CrudApi: | |
Type: Api | |
Properties: | |
Path: /crud | |
Method: ANY |