-
Notifications
You must be signed in to change notification settings - Fork 9
/
template.yml
43 lines (43 loc) · 1.08 KB
/
template.yml
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
---
AWSTemplateFormatVersion: '2010-09-09'
Transform: 'AWS::Serverless-2016-10-31'
Description: 'CloudWatch Alarm to Teams'
Parameters:
WebhookURL:
Description: 'Teams incoming webhook URL'
Type: String
Resources:
ForwardAlarmFunction:
Type: 'AWS::Serverless::Function'
Properties:
Handler: 'handler.processEvent'
Runtime: 'nodejs12.x'
MemorySize: 512
Timeout: 30
Environment:
Variables:
WEBHOOK_URL: !Ref WebhookURL
Events:
EventRule:
Type: EventBridgeRule
Properties:
Pattern:
source:
- 'aws.cloudwatch'
'detail-type':
- 'CloudWatch Alarm State Change'
detail:
state:
value:
- ALARM
Policies:
- !Ref ForwardAlarmPolicy
ForwardAlarmPolicy:
Type: 'AWS::IAM::ManagedPolicy'
Properties:
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action: 'cloudwatch:describeAlarms'
Resource: '*'