Skip to content

Commit 6a4f9ec

Browse files
committed
Update CHANGELOG
1 parent e743fd1 commit 6a4f9ec

File tree

2 files changed

+6
-9
lines changed

2 files changed

+6
-9
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@
1010

1111
## Version History
1212

13+
### v1.16.0
14+
15+
- :rocket: Use single SNS topic for all rules
16+
1317
### v1.15.0
1418

1519
- :rocket: Automatically remediate ENI & Volume tags

cloudformation/lib/config.js

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,6 @@ const resources = {
1010
DisplayName: cf.stackName
1111
}
1212
},
13-
HighUrgencyAlarmTopic: {
14-
Type: 'AWS::SNS::Topic',
15-
Properties: {
16-
DisplayName: cf.join([cf.stackName, '-high-urgency']),
17-
TopicName: cf.join([cf.stackName, '-high-urgency'])
18-
}
19-
},
2013
EventRule: {
2114
Type: 'AWS::Events::Rule',
2215
Properties: {
@@ -87,7 +80,7 @@ const resources = {
8780
Properties: {
8881
AlarmName: cf.join([cf.stackName, '-errors']),
8982
ActionsEnabled: true,
90-
AlarmActions: [ cf.ref('HighUrgencyAlarmTopic') ],
83+
AlarmActions: [ cf.ref('EventNotify') ],
9184
MetricName: 'Errors',
9285
Namespace: 'AWS/Lambda',
9386
Statistic: 'Maximum',
@@ -107,7 +100,7 @@ const resources = {
107100
Properties: {
108101
AlarmName: cf.join([cf.stackName, '-no-invocations']),
109102
ActionsEnabled: true,
110-
AlarmActions: [ cf.ref('HighUrgencyAlarmTopic') ],
103+
AlarmActions: [ cf.ref('EventNotify') ],
111104
MetricName: 'Invocations',
112105
Namespace: 'AWS/Lambda',
113106
Statistic: 'Maximum',

0 commit comments

Comments
 (0)