-
Notifications
You must be signed in to change notification settings - Fork 17
/
aws_button_template.json
137 lines (137 loc) · 3.89 KB
/
aws_button_template.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
126
127
128
129
130
131
132
133
134
135
136
137
{
"AWSTemplateFormatVersion": "2010-09-09",
"Description": "Mongoose OS Internet Button Template",
"Parameters": {
"TopicName": {
"Description": "IoT Topic Name",
"Type": "String",
"AllowedPattern": "[a-zA-Z0-9_/#+]*",
"MinLength": "1",
"MaxLength": "2048",
"ConstraintDescription": "must contain only alphanumberic characters and underscores"
},
"SubscriptionEmail": {
"Description": "Subscription Email",
"Type": "String",
"AllowedPattern": ".+",
"MinLength": "1",
"MaxLength": "2048"
}
},
"Resources": {
"mySNSTopic": {
"Type": "AWS::SNS::Topic",
"Properties": {
"Subscription": [
{
"Protocol": "email",
"Endpoint": {"Ref": "SubscriptionEmail"}
}
]
}
},
"myLambda": {
"Type": "AWS::Lambda::Function",
"Properties": {
"Code": {
"ZipFile": {
"Fn::Join": ["\n", [
"var AWS = require('aws-sdk');",
"",
"exports.handler = (event, context, callback) => {",
{"Fn::Join": ["", [" var message = 'Button pressed: ", { "Ref": "TopicName" }, "';"]]},
" var sns = new AWS.SNS();",
" sns.publish({",
{"Fn::Join": ["", [" TopicArn: '", { "Ref": "mySNSTopic" }, "',"]]},
" Message: JSON.stringify(message)",
" }, function(err, data) {",
" if(err) {",
" console.error('error publishing to SNS');",
" context.fail(err);",
" } else {",
" console.info('message published to SNS');",
" context.succeed();",
" }",
" });",
"};",
""
]]
}
},
"Handler": "index.handler",
"Runtime": "nodejs4.3",
"Role": {"Fn::GetAtt": ["myLambdaRoleWhichAllowsCallingSNS", "Arn"]}
}
},
"myLambdaRoleWhichAllowsCallingSNS": {
"Type": "AWS::IAM::Role",
"Properties": {
"AssumeRolePolicyDocument": {
"Version" : "2012-10-17",
"Statement": [ {
"Effect": "Allow",
"Principal": {
"Service": [ "lambda.amazonaws.com" ]
},
"Action": [ "sts:AssumeRole" ]
} ]
},
"Path": "/",
"Policies": [
{
"PolicyName": "allow-call-sns",
"PolicyDocument": {
"Version" : "2012-10-17",
"Statement": [ {
"Effect": "Allow",
"Action": "sns:Publish",
"Resource": { "Ref": "mySNSTopic" }
} ]
}
}
]
}
},
"myTopicRule": {
"Type": "AWS::IoT::TopicRule",
"Properties": {
"TopicRulePayload": {
"RuleDisabled": "false",
"Sql": {
"Fn::Join" : [ "", ["SELECT * FROM '", { "Ref": "TopicName" }, "'"] ]
},
"Actions": [
{
"Lambda": {
"FunctionArn": {"Fn::GetAtt": ["myLambda", "Arn"]}
}
}
]
}
}
},
"myPermissionForTopicRuleToInvokeLambda": {
"Type": "AWS::Lambda::Permission",
"Properties": {
"Action": "lambda:InvokeFunction",
"FunctionName": {"Fn::GetAtt": ["myLambda", "Arn"]},
"Principal": "iot.amazonaws.com",
"SourceAccount": {"Ref": "AWS::AccountId"},
"SourceArn": {
"Fn::Join": [
"", [
"arn:aws:iot:",
{ "Ref": "AWS::Region" },
":",
{ "Ref": "AWS::AccountId" },
":rule/",
{ "Ref": "myTopicRule" }
]
]
}
}
}
},
"Outputs": {
}
}