-
Notifications
You must be signed in to change notification settings - Fork 5
/
aws-cf-stack.json
125 lines (123 loc) · 3.82 KB
/
aws-cf-stack.json
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
124
125
{
"AWSTemplateFormatVersion": "2010-09-09",
"Description": "Stack creates an S3 Bucket for test scripts and a Lambda function with the Skill test client.",
"Parameters": {
"lwaClientId": {
"Description": "Login With Amazon - Client Id",
"Type": "String",
"MinLength": "1",
"ConstraintDescription": "must contain a valid client id."
},
"lwaClientSecret": {
"Description": "Login With Amazon - Client Secret",
"Type": "String",
"MinLength": "1",
"ConstraintDescription": "must contain a valid client secret."
},
"lwaRefreshToken": {
"Description": "Login With Amazon - Refresh token",
"Type": "String",
"MinLength": "1",
"ConstraintDescription": "must contain a valid refresh token."
},
"skillId": {
"Description": "SkillId - leave empty if you'd like to reference it individually in the YAML scripts.",
"Type": "String",
"MinLength": "1",
"ConstraintDescription": "must contain a valid refresh token."
}
},
"Resources": {
"TestScriptBucket" : {
"Type" : "AWS::S3::Bucket",
"Properties" : {
}
},
"TestClientLambda": {
"Type": "AWS::Lambda::Function",
"Properties": {
"Code": {
"S3Bucket": "io.klerch.alexa.test",
"S3Key": "alexa-skills-kit-tester-java-1.0.0.jar"
},
"Environment" : {
"Variables" : {
"s3Bucket" : { "Ref" : "TestScriptBucket" },
"s3Path" : "",
"skillId" : { "Ref" : "skillId" },
"lwaClientId" : { "Ref" : "lwaClientId" },
"lwaClientSecret" : { "Ref" : "lwaClientSecret" },
"lwaRefreshToken" : { "Ref" : "lwaRefreshToken" }
}
},
"FunctionName": "reinvent-alx315-test-client",
"Handler": "io.klerch.alexa.test.Lambda",
"MemorySize": "1024",
"Role": { "Fn::GetAtt": [ "TestClientExecutionRole", "Arn" ] },
"Runtime": "java8",
"Timeout": "300"
}
},
"TestClientExecutionRole": {
"Type": "AWS::IAM::Role",
"Properties": {
"AssumeRolePolicyDocument": {
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Principal": {
"Service": [ "lambda.amazonaws.com" ]
},
"Action": [ "sts:AssumeRole" ]
}
]
},
"Policies": [
{
"PolicyName": "reinvent-alx315-test-client-s3-policy",
"PolicyDocument": {
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"s3:ListBucket",
"s3:ListObjects"
],
"Resource": { "Fn::GetAtt": [ "TestScriptBucket", "Arn" ] }
},
{
"Effect": "Allow",
"Action": [
"s3:GetObject"
],
"Resource": { "Fn::Join" : [ "/", [ { "Fn::GetAtt": [ "TestScriptBucket", "Arn" ] }, "*" ] ] }
},
{
"Effect": "Allow",
"Action": [
"logs:CreateLogGroup",
"logs:CreateLogStream",
"logs:PutLogEvents"
],
"Resource": "*"
}
]
}
}
]
}
}
},
"Outputs": {
"LambdaName": {
"Value": { "Ref": "TestClientLambda" },
"Description": "The Lambda function"
},
"S3Bucket": {
"Value": { "Ref": "TestScriptBucket" },
"Description": "Upload your YAML script files into this S3 bucket. All scripts in this bucket will be executed by the Lambda function."
}
}
}