-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.yaml
More file actions
48 lines (45 loc) · 1.34 KB
/
template.yaml
File metadata and controls
48 lines (45 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
AWSTemplateFormatVersion: '2010-09-09'
Transform: AWS::Serverless-2016-10-31
Description: SAM template for Menu_Get service
Resources:
GetMenuFunctionExecutionRole:
Type: AWS::IAM::Role
Properties:
RoleName: GetMenuFuncExecRole
Description: Execution role for Menu_Get svc
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Principal:
Service:
- lambda.amazonaws.com
Action:
- 'sts:AssumeRole'
ManagedPolicyArns:
- arn:aws:iam::aws:policy/AmazonDynamoDBFullAccess
- arn:aws:iam::aws:policy/AmazonS3FullAccess
- arn:aws:iam::aws:policy/AmazonSNSFullAccess
- arn:aws:iam::aws:policy/AmazonSQSFullAccess
- arn:aws:iam::aws:policy/CloudWatchLogsFullAccess
TakeawayApi:
Type: AWS::Serverless::Api
Properties:
Name: TakeawayApi
StageName: Dev
EndpointConfiguration: REGIONAL
GetMenuFunction:
Type: AWS::Serverless::Function
Properties:
FunctionName: lambda_get_menu
Handler: app.lambda_handler
Runtime: python3.11
CodeUri: src/
Role: !GetAtt GetMenuFunctionExecutionRole.Arn
Events:
GetMenuApi:
Type: Api
Properties:
RestApiId: !Ref TakeawayApi
Path: /menu
Method: GET