-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtemplate.yaml
123 lines (114 loc) · 3.24 KB
/
template.yaml
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
AWSTemplateFormatVersion: '2010-09-09'
Transform: AWS::Serverless-2016-10-31
Description: api for apis.goldenbearkin.com/apolloserverdemo/prod
Parameters:
DomainName:
Type: String
Description: The api domain name (e.g. example.com)
SubDomainName:
Type: String
Description: The api sub-domain name (e.g. www)
BasePath:
Type: String
Description: The api basePath (e.g. apolloserverdemo)
Stage:
Type: String
Description: Stage to deploy (e.g. dev)
Resources:
ApiGatewayApi:
Type: AWS::Serverless::Api
Properties:
DefinitionUri: ./swagger.yaml
StageName: !Ref Stage
Variables:
ServerlessExpressLambdaFunctionName: !Ref LambdaFunction
ApiGatewayMapping:
Type: AWS::ApiGateway::BasePathMapping
Properties:
BasePath: !Ref BasePath
DomainName: !Sub ${SubDomainName}.${DomainName}
RestApiId: !Ref ApiGatewayApi
# Stage: prod
LambdaExecutionRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
Effect: Allow
Principal:
Service: lambda.amazonaws.com
Action: sts:AssumeRole
ManagedPolicyArns: ['arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole']
LambdaApiGatewayExecutionPermission:
Type: AWS::Lambda::Permission
Properties:
Action: lambda:InvokeFunction
FunctionName: !GetAtt LambdaFunction.Arn
Principal: apigateway.amazonaws.com
SourceArn: !Join
- ''
- - 'arn:aws:execute-api:'
- !Ref AWS::Region
- ":"
- !Ref AWS::AccountId
- ":"
- !Ref ApiGatewayApi
- "/*/*"
LambdaFunction:
Type: AWS::Serverless::Function
Properties:
Environment:
Variables:
STAGE: !Ref Stage
NODE_ENV: production
CodeUri: ./
Handler: build/src/index.handler
MemorySize: 1024
Role: !GetAtt LambdaExecutionRole.Arn
Runtime: nodejs6.10
Timeout: 30
Events:
ProxyApiRoot:
Type: Api
Properties:
RestApiId: !Ref ApiGatewayApi
Path: /
Method: ANY
ProxyApiGreedy:
Type: Api
Properties:
RestApiId: !Ref ApiGatewayApi
Path: /{proxy+}
Method: ANY
Outputs:
LambdaFunctionConsoleUrl:
Description: Console URL for the Lambda Function.
Value: !Join
- ''
- - https://
- !Ref AWS::Region
- ".console.aws.amazon.com/lambda/home?region="
- !Ref AWS::Region
- "#/functions/"
- !Ref LambdaFunction
ApiGatewayApiConsoleUrl:
Description: Console URL for the API Gateway API's Stage.
Value: !Join
- ''
- - https://
- !Ref AWS::Region
- ".console.aws.amazon.com/apigateway/home?region="
- !Ref AWS::Region
- "#/apis/"
- !Ref ApiGatewayApi
- !Sub "/stages/${Stage}"
ApiUrl:
Description: Invoke URL for your API. Clicking this link will perform a GET request
on the root resource of your API.
Value: !Join
- ''
- - https://
- !Sub "${SubDomainName}.${DomainName}"
- !Sub "/${BasePath}"
- !Sub "/${Stage}/graphiql"