forked from dxctechnology/dxcf-templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBilling-BillingAlarms.yaml
1151 lines (1139 loc) · 44 KB
/
Billing-BillingAlarms.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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
AWSTemplateFormatVersion: 2010-09-09
Description: Billing-BillingAlarms Template.
This creates Billing CloudWatch Alarms, with Threshholds calculated based on Low, Normal and High limits.
Metadata:
AWS::CloudFormation::Interface:
ParameterGroups:
- Label:
default: Stack Dependencies
Parameters:
- BillingTopicsStackName
- Label:
default: Function Configuration
Parameters:
- BillingAlarmThresholdCalculatorLogRetention
- Label:
default: Environment Configuration
Parameters:
- EnvironmentType
ParameterLabels:
BillingTopicsStackName:
default: Billing Topics Stack Name
BillingAlarmThresholdCalculatorLogRetention:
default: BillingAlarmThresholdCalculator Log Retention
EnvironmentType:
default: Environment Type
Parameters:
BillingTopicsStackName:
Description: Name of the CloudFormation Stack containing Billing Topics
Type: String
MinLength: 2
MaxLength: 64
Default: BillingTopics
AllowedPattern: ^[A-Z][-a-zA-Z0-9]*$
ConstraintDescription: must begin with an upper case letter and contain alphanumeric characters and dashes.
BillingAlarmThresholdCalculatorLogRetention:
Description: Number of days to retain CloudWatch Log Events for the BillingAlarmThresholdCalculator Lambda Function
Type: Number
Default: 365
AllowedValues:
- 1
- 3
- 5
- 7
- 14
- 30
- 60
- 90
- 120
- 365
ConstraintDescription: must be 1, 3, 5, 7, 14, 30, 60, 90 120 or 365.
EnvironmentType:
Description: Type of the Environment to configure alarms for monitoring costs. Used to select which Alarms to create
Type: String
Default: nano
AllowedValues:
- none # To update, switch to none, then any new type - otherwise Alarms which exist will conflict with new Alarms
- nano
- micro
- small
- medium
- large
- xlarge
- 2xlarge
- 4xlarge
- 8xlarge
- 16xlarge
- 32xlarge
ConstraintDescription: must be none, nano, micro, small, medium, large, xlarge, 2xlarge, 4xlarge, 8xlarge, 16xlarge or 32xlarge.
Mappings:
RegionNameMap:
us-east-1:
Name: Virginia
Code: ue1
us-east-2:
Name: Ohio
Code: ue2
us-west-1:
Name: California
Code: uw1
us-west-2:
Name: Oregon
Code: uw2
ap-east-1:
Name: HongKong
Code: ae1
ap-south-1:
Name: Mumbai
Code: ad1
ap-northeast-2:
Name: Seoul
Code: an2
ap-southeast-1:
Name: Singapore
Code: as1
ap-southeast-2:
Name: Sydney
Code: as2
ap-northeast-1:
Name: Tokyo
Code: an1
ca-central-1:
Name: Canada
Code: cc1
eu-central-1:
Name: Frankfurt
Code: ec1
eu-west-1:
Name: Ireland
Code: ew1
eu-west-2:
Name: London
Code: ew2
eu-west-3:
Name: Paris
Code: ew3
eu-north-1:
Name: Stockholm
Code: en1
me-south-1:
Name: Bahrain
Code: ms1
sa-east-1:
Name: SaoPaulo
Code: se1
ThresholdMap:
Low: # 0 = Evenly-spaced NormalAlarms throughout Month - vs - 50% or 75% of Normal = Alarms only near EOM
none: 0
nano: 0
micro: 0
small: 0
medium: 0
large: 0
xlarge: 0
2xlarge: 0
4xlarge: 0
8xlarge: 0
16xlarge: 0
32xlarge: 0
Normal:
none: 0
nano: 50
micro: 100
small: 250
medium: 500
large: 1000
xlarge: 2500
2xlarge: 5000
4xlarge: 10000
8xlarge: 25000
16xlarge: 50000
32xlarge: 100000
High: # 2 * Normal
none: 0
nano: 100
micro: 200
small: 500
medium: 1000
large: 2000
xlarge: 5000
2xlarge: 10000
4xlarge: 20000
8xlarge: 50000
16xlarge: 100000
32xlarge: 200000
AlarmsMap:
Normal: # Can be 0, 5, 10 or 20 - enforced in Lambda Function
none: 0
nano: 5
micro: 10
small: 10
medium: 10
large: 10
xlarge: 10
2xlarge: 10
4xlarge: 20
8xlarge: 20
16xlarge: 20
32xlarge: 20
High: # Can be 0, 5, 10 or 20 - enforced in Lambda Function
none: 0
nano: 10
micro: 10
small: 10
medium: 10
large: 10
xlarge: 10
2xlarge: 10
4xlarge: 20
8xlarge: 20
16xlarge: 20
32xlarge: 20
Rules:
ValidateRegion:
Assertions:
- Assert: !Equals [ !Ref 'AWS::Region', us-east-1 ]
AssertDescription: This Template can only be used in Region us-east-1.
Conditions:
ConfigureNormal05: !Or [ !Equals [ !FindInMap [ AlarmsMap, Normal, !Ref EnvironmentType ], 5 ],
!Equals [ !FindInMap [ AlarmsMap, Normal, !Ref EnvironmentType ], 10 ],
!Equals [ !FindInMap [ AlarmsMap, Normal, !Ref EnvironmentType ], 20 ]]
ConfigureNormal10: !Or [ !Equals [ !FindInMap [ AlarmsMap, Normal, !Ref EnvironmentType ], 10 ],
!Equals [ !FindInMap [ AlarmsMap, Normal, !Ref EnvironmentType ], 20 ]]
ConfigureNormal20: !Equals [ !FindInMap [ AlarmsMap, Normal, !Ref EnvironmentType ], 20 ]
ConfigureHigh05: !Or [ !Equals [ !FindInMap [ AlarmsMap, High, !Ref EnvironmentType ], 5 ],
!Equals [ !FindInMap [ AlarmsMap, High, !Ref EnvironmentType ], 10 ],
!Equals [ !FindInMap [ AlarmsMap, High, !Ref EnvironmentType ], 20 ]]
ConfigureHigh10: !Or [ !Equals [ !FindInMap [ AlarmsMap, High, !Ref EnvironmentType ], 10 ],
!Equals [ !FindInMap [ AlarmsMap, High, !Ref EnvironmentType ], 20 ]]
ConfigureHigh20: !Equals [ !FindInMap [ AlarmsMap, High, !Ref EnvironmentType ], 20 ]
Resources:
BillingAlarmThresholdCalculatorRole:
Type: AWS::IAM::Role
Properties:
Path: /
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
BillingAlarmThresholdCalculatorLogGroup:
Type: AWS::Logs::LogGroup
Properties:
LogGroupName: /aws/lambda/BilingAlarmThresholdCalculator
RetentionInDays: !Ref BillingAlarmThresholdCalculatorLogRetention
BillingAlarmThresholdCalculatorFunction:
Type: AWS::Lambda::Function
Properties:
FunctionName: BilingAlarmThresholdCalculator
Description: A Lambda function which calculates Billing Alarm Thresholds for use in Billing Alarms. This calculates a set of Values which can be used to set Alarm Thresholds, based on Low, Normal and High Values.
Role: !GetAtt BillingAlarmThresholdCalculatorRole.Arn
Runtime: nodejs10.x
Timeout: 30
Handler: index.handler
Code:
ZipFile: |
const response = require('./cfn-response');
exports.handler = (event, context) => {
console.info(`Request body:\n${JSON.stringify(event)}`);
switch (event.RequestType) {
case 'Create':
case 'Update':
const properties = event.ResourceProperties;
console.info(`Validating: Parameters...`);
const lowAmount = (properties.LowAmount) ? Number(properties.LowAmount) : 0;
if (! Number.isInteger(lowAmount) || lowAmount < 0 || lowAmount % 10) {
const responseData = {Error: `Error: LowAmount invalid: must be a positive integer divisible by 10 or 0`};
console.error(responseData.Error);
response.send(event, context, response.FAILED, responseData);
return;
}
const normalAmount = (properties.NormalAmount) ? Number(properties.NormalAmount) : 'invalid';
if (! Number.isInteger(normalAmount) || normalAmount < 0 || normalAmount <= lowAmount || normalAmount % 10) {
const responseData = {Error: `Error: NormalAmount invalid: must be a positive integer divisible by 10 and greater than LowAmount`};
console.error(responseData.Error);
response.send(event, context, response.FAILED, responseData);
return;
}
const highAmount = (properties.HighAmount) ? Number(properties.HighAmount) : normalAmount * 1.2;
if (! Number.isInteger(highAmount) || highAmount < 0 || highAmount <= normalAmount || highAmount % 10) {
const responseData = {Error: `Error: HighAmount invalid: must be a positive integer divisible by 10 and greater than NormalAmount`};
console.error(responseData.Error);
response.send(event, context, response.FAILED, responseData);
return;
}
const normalAlarms = (properties.NormalAlarms) ? Number(properties.NormalAlarms) : 5;
if (! /^(5|10|20)$/.test(normalAlarms)) {
const responseData = {Error: `Error: NormalAlarms invalid: must be 5, 10 or 20`};
console.error(responseData.Error);
response.send(event, context, response.FAILED, responseData);
return;
}
const highAlarms = (properties.HighAlarms) ? Number(properties.HighAlarms) : 5;
if (! /^(5|10|20)$/.test(highAlarms)) {
const responseData = {Error: `Error: HighAlarms invalid: must be 5, 10 or 20`};
console.error(responseData.Error);
response.send(event, context, response.FAILED, responseData);
return;
}
if ((normalAmount - lowAmount) < normalAlarms) {
const responseData = {Error: `Error: NormalAlarms invalid: NormalAmount - LowAmount must be greater than or equal to NormalAlarms`};
console.error(responseData.Error);
response.send(event, context, response.FAILED, responseData);
return;
}
if ((highAmount - normalAmount) < highAlarms) {
const responseData = {Error: `Error: HighAlarms invalid: HighAmount - NormalAmount must be greater than or equal to HighAlarms`};
console.error(responseData.Error);
response.send(event, context, response.FAILED, responseData);
return;
}
console.info(`Calculating Alarm Threshholds...`);
let responseData = {};
for (let alarm = 1; alarm <= normalAlarms; alarm++) {
console.info(`Normal${alarm.toString().padStart(2,'0')}: ${(lowAmount + Math.round(((normalAmount - lowAmount) / normalAlarms) * alarm))}`);
responseData[`Normal${alarm.toString().padStart(2,'0')}`] = lowAmount + Math.round(((normalAmount - lowAmount) / normalAlarms) * alarm);
}
for (let alarm = 1; alarm <= highAlarms; alarm++) {
console.info(`High${alarm.toString().padStart(2,'0')}: ${(normalAmount + Math.round(((highAmount - normalAmount) / highAlarms) * alarm))}`);
responseData[`High${alarm.toString().padStart(2,'0')}`] = normalAmount + Math.round(((highAmount - normalAmount) / highAlarms) * alarm);
}
response.send(event, context, response.SUCCESS, responseData);
break;
case 'Delete':
response.send(event, context, response.SUCCESS);
}
};
DependsOn: BillingAlarmThresholdCalculatorLogGroup
BilingAlarmThresholdCalculator:
Type: Custom::BilingAlarmThresholdCalculator
Properties:
ServiceToken: !GetAtt BillingAlarmThresholdCalculatorFunction.Arn
LowAmount: !FindInMap [ ThresholdMap, Low, !Ref EnvironmentType ]
NormalAmount: !FindInMap [ ThresholdMap, Normal, !Ref EnvironmentType ]
HighAmount: !FindInMap [ ThresholdMap, High, !Ref EnvironmentType ]
NormalAlarms: !FindInMap [ AlarmsMap, Normal, !Ref EnvironmentType ]
HighAlarms: !FindInMap [ AlarmsMap, High, !Ref EnvironmentType ]
Condition: ConfigureNormal05
BillingEstimatedChargesNormalAlarm01:
Type: AWS::CloudWatch::Alarm
Properties:
AlarmName: !Sub BillingEstimatedCharges-${BilingAlarmThresholdCalculator.Normal01}
AlarmDescription: !Sub Notify BillsTopic when AWS EstimatedCharges exceed $${BilingAlarmThresholdCalculator.Normal01}
AlarmActions:
- !ImportValue
Fn::Sub: ${BillingTopicsStackName}-BillsTopic
Namespace: AWS/Billing
MetricName: EstimatedCharges
Statistic: Maximum
Dimensions:
- Name: Currency
Value: USD
Period: 21600
EvaluationPeriods: 1
Threshold: !GetAtt BilingAlarmThresholdCalculator.Normal01
ComparisonOperator: GreaterThanThreshold
Condition: ConfigureNormal05
BillingEstimatedChargesNormalAlarm02:
Type: AWS::CloudWatch::Alarm
Properties:
AlarmName: !Sub BillingEstimatedCharges-${BilingAlarmThresholdCalculator.Normal02}
AlarmDescription: !Sub Notify BillsTopic when AWS EstimatedCharges exceed $${BilingAlarmThresholdCalculator.Normal02}
AlarmActions:
- !ImportValue
Fn::Sub: ${BillingTopicsStackName}-BillsTopic
Namespace: AWS/Billing
MetricName: EstimatedCharges
Statistic: Maximum
Dimensions:
- Name: Currency
Value: USD
Period: 21600
EvaluationPeriods: 1
Threshold: !GetAtt BilingAlarmThresholdCalculator.Normal02
ComparisonOperator: GreaterThanThreshold
Condition: ConfigureNormal05
BillingEstimatedChargesNormalAlarm03:
Type: AWS::CloudWatch::Alarm
Properties:
AlarmName: !Sub BillingEstimatedCharges-${BilingAlarmThresholdCalculator.Normal03}
AlarmDescription: !Sub Notify BillsTopic when AWS EstimatedCharges exceed $${BilingAlarmThresholdCalculator.Normal03}
AlarmActions:
- !ImportValue
Fn::Sub: ${BillingTopicsStackName}-BillsTopic
Namespace: AWS/Billing
MetricName: EstimatedCharges
Statistic: Maximum
Dimensions:
- Name: Currency
Value: USD
Period: 21600
EvaluationPeriods: 1
Threshold: !GetAtt BilingAlarmThresholdCalculator.Normal03
ComparisonOperator: GreaterThanThreshold
Condition: ConfigureNormal05
BillingEstimatedChargesNormalAlarm04:
Type: AWS::CloudWatch::Alarm
Properties:
AlarmName: !Sub BillingEstimatedCharges-${BilingAlarmThresholdCalculator.Normal04}
AlarmDescription: !Sub Notify BillsTopic when AWS EstimatedCharges exceed $${BilingAlarmThresholdCalculator.Normal04}
AlarmActions:
- !ImportValue
Fn::Sub: ${BillingTopicsStackName}-BillsTopic
Namespace: AWS/Billing
MetricName: EstimatedCharges
Statistic: Maximum
Dimensions:
- Name: Currency
Value: USD
Period: 21600
EvaluationPeriods: 1
Threshold: !GetAtt BilingAlarmThresholdCalculator.Normal04
ComparisonOperator: GreaterThanThreshold
Condition: ConfigureNormal05
BillingEstimatedChargesNormalAlarm05:
Type: AWS::CloudWatch::Alarm
Properties:
AlarmName: !Sub BillingEstimatedCharges-${BilingAlarmThresholdCalculator.Normal05}
AlarmDescription: !Sub Notify BillsTopic when AWS EstimatedCharges exceed $${BilingAlarmThresholdCalculator.Normal05}
AlarmActions:
- !ImportValue
Fn::Sub: ${BillingTopicsStackName}-BillsTopic
Namespace: AWS/Billing
MetricName: EstimatedCharges
Statistic: Maximum
Dimensions:
- Name: Currency
Value: USD
Period: 21600
EvaluationPeriods: 1
Threshold: !GetAtt BilingAlarmThresholdCalculator.Normal05
ComparisonOperator: GreaterThanThreshold
Condition: ConfigureNormal05
BillingEstimatedChargesNormalAlarm06:
Type: AWS::CloudWatch::Alarm
Properties:
AlarmName: !Sub BillingEstimatedCharges-${BilingAlarmThresholdCalculator.Normal06}
AlarmDescription: !Sub Notify BillsTopic when AWS EstimatedCharges exceed $${BilingAlarmThresholdCalculator.Normal06}
AlarmActions:
- !ImportValue
Fn::Sub: ${BillingTopicsStackName}-BillsTopic
Namespace: AWS/Billing
MetricName: EstimatedCharges
Statistic: Maximum
Dimensions:
- Name: Currency
Value: USD
Period: 21600
EvaluationPeriods: 1
Threshold: !GetAtt BilingAlarmThresholdCalculator.Normal06
ComparisonOperator: GreaterThanThreshold
Condition: ConfigureNormal10
BillingEstimatedChargesNormalAlarm07:
Type: AWS::CloudWatch::Alarm
Properties:
AlarmName: !Sub BillingEstimatedCharges-${BilingAlarmThresholdCalculator.Normal07}
AlarmDescription: !Sub Notify BillsTopic when AWS EstimatedCharges exceed $${BilingAlarmThresholdCalculator.Normal07}
AlarmActions:
- !ImportValue
Fn::Sub: ${BillingTopicsStackName}-BillsTopic
Namespace: AWS/Billing
MetricName: EstimatedCharges
Statistic: Maximum
Dimensions:
- Name: Currency
Value: USD
Period: 21600
EvaluationPeriods: 1
Threshold: !GetAtt BilingAlarmThresholdCalculator.Normal07
ComparisonOperator: GreaterThanThreshold
Condition: ConfigureNormal10
BillingEstimatedChargesNormalAlarm08:
Type: AWS::CloudWatch::Alarm
Properties:
AlarmName: !Sub BillingEstimatedCharges-${BilingAlarmThresholdCalculator.Normal08}
AlarmDescription: !Sub Notify BillsTopic when AWS EstimatedCharges exceed $${BilingAlarmThresholdCalculator.Normal08}
AlarmActions:
- !ImportValue
Fn::Sub: ${BillingTopicsStackName}-BillsTopic
Namespace: AWS/Billing
MetricName: EstimatedCharges
Statistic: Maximum
Dimensions:
- Name: Currency
Value: USD
Period: 21600
EvaluationPeriods: 1
Threshold: !GetAtt BilingAlarmThresholdCalculator.Normal08
ComparisonOperator: GreaterThanThreshold
Condition: ConfigureNormal10
BillingEstimatedChargesNormalAlarm09:
Type: AWS::CloudWatch::Alarm
Properties:
AlarmName: !Sub BillingEstimatedCharges-${BilingAlarmThresholdCalculator.Normal09}
AlarmDescription: !Sub Notify BillsTopic when AWS EstimatedCharges exceed $${BilingAlarmThresholdCalculator.Normal09}
AlarmActions:
- !ImportValue
Fn::Sub: ${BillingTopicsStackName}-BillsTopic
Namespace: AWS/Billing
MetricName: EstimatedCharges
Statistic: Maximum
Dimensions:
- Name: Currency
Value: USD
Period: 21600
EvaluationPeriods: 1
Threshold: !GetAtt BilingAlarmThresholdCalculator.Normal09
ComparisonOperator: GreaterThanThreshold
Condition: ConfigureNormal10
BillingEstimatedChargesNormalAlarm10:
Type: AWS::CloudWatch::Alarm
Properties:
AlarmName: !Sub BillingEstimatedCharges-${BilingAlarmThresholdCalculator.Normal10}
AlarmDescription: !Sub Notify BillsTopic when AWS EstimatedCharges exceed $${BilingAlarmThresholdCalculator.Normal10}
AlarmActions:
- !ImportValue
Fn::Sub: ${BillingTopicsStackName}-BillsTopic
Namespace: AWS/Billing
MetricName: EstimatedCharges
Statistic: Maximum
Dimensions:
- Name: Currency
Value: USD
Period: 21600
EvaluationPeriods: 1
Threshold: !GetAtt BilingAlarmThresholdCalculator.Normal10
ComparisonOperator: GreaterThanThreshold
Condition: ConfigureNormal10
BillingEstimatedChargesNormalAlarm11:
Type: AWS::CloudWatch::Alarm
Properties:
AlarmName: !Sub BillingEstimatedCharges-${BilingAlarmThresholdCalculator.Normal11}
AlarmDescription: !Sub Notify BillsTopic when AWS EstimatedCharges exceed $${BilingAlarmThresholdCalculator.Normal11}
AlarmActions:
- !ImportValue
Fn::Sub: ${BillingTopicsStackName}-BillsTopic
Namespace: AWS/Billing
MetricName: EstimatedCharges
Statistic: Maximum
Dimensions:
- Name: Currency
Value: USD
Period: 21600
EvaluationPeriods: 1
Threshold: !GetAtt BilingAlarmThresholdCalculator.Normal11
ComparisonOperator: GreaterThanThreshold
Condition: ConfigureNormal20
BillingEstimatedChargesNormalAlarm12:
Type: AWS::CloudWatch::Alarm
Properties:
AlarmName: !Sub BillingEstimatedCharges-${BilingAlarmThresholdCalculator.Normal12}
AlarmDescription: !Sub Notify BillsTopic when AWS EstimatedCharges exceed $${BilingAlarmThresholdCalculator.Normal12}
AlarmActions:
- !ImportValue
Fn::Sub: ${BillingTopicsStackName}-BillsTopic
Namespace: AWS/Billing
MetricName: EstimatedCharges
Statistic: Maximum
Dimensions:
- Name: Currency
Value: USD
Period: 21600
EvaluationPeriods: 1
Threshold: !GetAtt BilingAlarmThresholdCalculator.Normal12
ComparisonOperator: GreaterThanThreshold
Condition: ConfigureNormal20
BillingEstimatedChargesNormalAlarm13:
Type: AWS::CloudWatch::Alarm
Properties:
AlarmName: !Sub BillingEstimatedCharges-${BilingAlarmThresholdCalculator.Normal13}
AlarmDescription: !Sub Notify BillsTopic when AWS EstimatedCharges exceed $${BilingAlarmThresholdCalculator.Normal13}
AlarmActions:
- !ImportValue
Fn::Sub: ${BillingTopicsStackName}-BillsTopic
Namespace: AWS/Billing
MetricName: EstimatedCharges
Statistic: Maximum
Dimensions:
- Name: Currency
Value: USD
Period: 21600
EvaluationPeriods: 1
Threshold: !GetAtt BilingAlarmThresholdCalculator.Normal13
ComparisonOperator: GreaterThanThreshold
Condition: ConfigureNormal20
BillingEstimatedChargesNormalAlarm14:
Type: AWS::CloudWatch::Alarm
Properties:
AlarmName: !Sub BillingEstimatedCharges-${BilingAlarmThresholdCalculator.Normal14}
AlarmDescription: !Sub Notify BillsTopic when AWS EstimatedCharges exceed $${BilingAlarmThresholdCalculator.Normal14}
AlarmActions:
- !ImportValue
Fn::Sub: ${BillingTopicsStackName}-BillsTopic
Namespace: AWS/Billing
MetricName: EstimatedCharges
Statistic: Maximum
Dimensions:
- Name: Currency
Value: USD
Period: 21600
EvaluationPeriods: 1
Threshold: !GetAtt BilingAlarmThresholdCalculator.Normal14
ComparisonOperator: GreaterThanThreshold
Condition: ConfigureNormal20
BillingEstimatedChargesNormalAlarm15:
Type: AWS::CloudWatch::Alarm
Properties:
AlarmName: !Sub BillingEstimatedCharges-${BilingAlarmThresholdCalculator.Normal15}
AlarmDescription: !Sub Notify BillsTopic when AWS EstimatedCharges exceed $${BilingAlarmThresholdCalculator.Normal15}
AlarmActions:
- !ImportValue
Fn::Sub: ${BillingTopicsStackName}-BillsTopic
Namespace: AWS/Billing
MetricName: EstimatedCharges
Statistic: Maximum
Dimensions:
- Name: Currency
Value: USD
Period: 21600
EvaluationPeriods: 1
Threshold: !GetAtt BilingAlarmThresholdCalculator.Normal15
ComparisonOperator: GreaterThanThreshold
Condition: ConfigureNormal20
BillingEstimatedChargesNormalAlarm16:
Type: AWS::CloudWatch::Alarm
Properties:
AlarmName: !Sub BillingEstimatedCharges-${BilingAlarmThresholdCalculator.Normal16}
AlarmDescription: !Sub Notify BillsTopic when AWS EstimatedCharges exceed $${BilingAlarmThresholdCalculator.Normal16}
AlarmActions:
- !ImportValue
Fn::Sub: ${BillingTopicsStackName}-BillsTopic
Namespace: AWS/Billing
MetricName: EstimatedCharges
Statistic: Maximum
Dimensions:
- Name: Currency
Value: USD
Period: 21600
EvaluationPeriods: 1
Threshold: !GetAtt BilingAlarmThresholdCalculator.Normal16
ComparisonOperator: GreaterThanThreshold
Condition: ConfigureNormal20
BillingEstimatedChargesNormalAlarm17:
Type: AWS::CloudWatch::Alarm
Properties:
AlarmName: !Sub BillingEstimatedCharges-${BilingAlarmThresholdCalculator.Normal17}
AlarmDescription: !Sub Notify BillsTopic when AWS EstimatedCharges exceed $${BilingAlarmThresholdCalculator.Normal17}
AlarmActions:
- !ImportValue
Fn::Sub: ${BillingTopicsStackName}-BillsTopic
Namespace: AWS/Billing
MetricName: EstimatedCharges
Statistic: Maximum
Dimensions:
- Name: Currency
Value: USD
Period: 21600
EvaluationPeriods: 1
Threshold: !GetAtt BilingAlarmThresholdCalculator.Normal17
ComparisonOperator: GreaterThanThreshold
Condition: ConfigureNormal20
BillingEstimatedChargesNormalAlarm18:
Type: AWS::CloudWatch::Alarm
Properties:
AlarmName: !Sub BillingEstimatedCharges-${BilingAlarmThresholdCalculator.Normal18}
AlarmDescription: !Sub Notify BillsTopic when AWS EstimatedCharges exceed $${BilingAlarmThresholdCalculator.Normal18}
AlarmActions:
- !ImportValue
Fn::Sub: ${BillingTopicsStackName}-BillsTopic
Namespace: AWS/Billing
MetricName: EstimatedCharges
Statistic: Maximum
Dimensions:
- Name: Currency
Value: USD
Period: 21600
EvaluationPeriods: 1
Threshold: !GetAtt BilingAlarmThresholdCalculator.Normal18
ComparisonOperator: GreaterThanThreshold
Condition: ConfigureNormal20
BillingEstimatedChargesNormalAlarm19:
Type: AWS::CloudWatch::Alarm
Properties:
AlarmName: !Sub BillingEstimatedCharges-${BilingAlarmThresholdCalculator.Normal19}
AlarmDescription: !Sub Notify BillsTopic when AWS EstimatedCharges exceed $${BilingAlarmThresholdCalculator.Normal19}
AlarmActions:
- !ImportValue
Fn::Sub: ${BillingTopicsStackName}-BillsTopic
Namespace: AWS/Billing
MetricName: EstimatedCharges
Statistic: Maximum
Dimensions:
- Name: Currency
Value: USD
Period: 21600
EvaluationPeriods: 1
Threshold: !GetAtt BilingAlarmThresholdCalculator.Normal19
ComparisonOperator: GreaterThanThreshold
Condition: ConfigureNormal20
BillingEstimatedChargesNormalAlarm20:
Type: AWS::CloudWatch::Alarm
Properties:
AlarmName: !Sub BillingEstimatedCharges-${BilingAlarmThresholdCalculator.Normal20}
AlarmDescription: !Sub Notify BillsTopic when AWS EstimatedCharges exceed $${BilingAlarmThresholdCalculator.Normal20}
AlarmActions:
- !ImportValue
Fn::Sub: ${BillingTopicsStackName}-BillsTopic
Namespace: AWS/Billing
MetricName: EstimatedCharges
Statistic: Maximum
Dimensions:
- Name: Currency
Value: USD
Period: 21600
EvaluationPeriods: 1
Threshold: !GetAtt BilingAlarmThresholdCalculator.Normal20
ComparisonOperator: GreaterThanThreshold
Condition: ConfigureNormal20
BillingEstimatedChargesHighAlarm01:
Type: AWS::CloudWatch::Alarm
Properties:
AlarmName: !Sub BillingEstimatedCharges-${BilingAlarmThresholdCalculator.High01}
AlarmDescription: !Sub Notify BillsTopic and UrgentBillsTopic when AWS EstimatedCharges exceed $${BilingAlarmThresholdCalculator.High01}
AlarmActions:
- !ImportValue
Fn::Sub: ${BillingTopicsStackName}-BillsTopic
- !ImportValue
Fn::Sub: ${BillingTopicsStackName}-UrgentBillsTopic
Namespace: AWS/Billing
MetricName: EstimatedCharges
Statistic: Maximum
Dimensions:
- Name: Currency
Value: USD
Period: 21600
EvaluationPeriods: 1
Threshold: !GetAtt BilingAlarmThresholdCalculator.High01
ComparisonOperator: GreaterThanThreshold
Condition: ConfigureHigh05
BillingEstimatedChargesHighAlarm02:
Type: AWS::CloudWatch::Alarm
Properties:
AlarmName: !Sub BillingEstimatedCharges-${BilingAlarmThresholdCalculator.High02}
AlarmDescription: !Sub Notify BillsTopic and UrgentBillsTopic when AWS EstimatedCharges exceed $${BilingAlarmThresholdCalculator.High02}
AlarmActions:
- !ImportValue
Fn::Sub: ${BillingTopicsStackName}-BillsTopic
- !ImportValue
Fn::Sub: ${BillingTopicsStackName}-UrgentBillsTopic
Namespace: AWS/Billing
MetricName: EstimatedCharges
Statistic: Maximum
Dimensions:
- Name: Currency
Value: USD
Period: 21600
EvaluationPeriods: 1
Threshold: !GetAtt BilingAlarmThresholdCalculator.High02
ComparisonOperator: GreaterThanThreshold
Condition: ConfigureHigh05
BillingEstimatedChargesHighAlarm03:
Type: AWS::CloudWatch::Alarm
Properties:
AlarmName: !Sub BillingEstimatedCharges-${BilingAlarmThresholdCalculator.High03}
AlarmDescription: !Sub Notify BillsTopic and UrgentBillsTopic when AWS EstimatedCharges exceed $${BilingAlarmThresholdCalculator.High03}
AlarmActions:
- !ImportValue
Fn::Sub: ${BillingTopicsStackName}-BillsTopic
- !ImportValue
Fn::Sub: ${BillingTopicsStackName}-UrgentBillsTopic
Namespace: AWS/Billing
MetricName: EstimatedCharges
Statistic: Maximum
Dimensions:
- Name: Currency
Value: USD
Period: 21600
EvaluationPeriods: 1
Threshold: !GetAtt BilingAlarmThresholdCalculator.High03
ComparisonOperator: GreaterThanThreshold
Condition: ConfigureHigh05
BillingEstimatedChargesHighAlarm04:
Type: AWS::CloudWatch::Alarm
Properties:
AlarmName: !Sub BillingEstimatedCharges-${BilingAlarmThresholdCalculator.High04}
AlarmDescription: !Sub Notify BillsTopic and UrgentBillsTopic when AWS EstimatedCharges exceed $${BilingAlarmThresholdCalculator.High04}
AlarmActions:
- !ImportValue
Fn::Sub: ${BillingTopicsStackName}-BillsTopic
- !ImportValue
Fn::Sub: ${BillingTopicsStackName}-UrgentBillsTopic
Namespace: AWS/Billing
MetricName: EstimatedCharges
Statistic: Maximum
Dimensions:
- Name: Currency
Value: USD
Period: 21600
EvaluationPeriods: 1
Threshold: !GetAtt BilingAlarmThresholdCalculator.High04
ComparisonOperator: GreaterThanThreshold
Condition: ConfigureHigh05
BillingEstimatedChargesHighAlarm05:
Type: AWS::CloudWatch::Alarm
Properties:
AlarmName: !Sub BillingEstimatedCharges-${BilingAlarmThresholdCalculator.High05}
AlarmDescription: !Sub Notify BillsTopic and UrgentBillsTopic when AWS EstimatedCharges exceed $${BilingAlarmThresholdCalculator.High05}
AlarmActions:
- !ImportValue
Fn::Sub: ${BillingTopicsStackName}-BillsTopic
- !ImportValue
Fn::Sub: ${BillingTopicsStackName}-UrgentBillsTopic
Namespace: AWS/Billing
MetricName: EstimatedCharges
Statistic: Maximum
Dimensions:
- Name: Currency
Value: USD
Period: 21600
EvaluationPeriods: 1
Threshold: !GetAtt BilingAlarmThresholdCalculator.High05
ComparisonOperator: GreaterThanThreshold
Condition: ConfigureHigh05
BillingEstimatedChargesHighAlarm06:
Type: AWS::CloudWatch::Alarm
Properties:
AlarmName: !Sub BillingEstimatedCharges-${BilingAlarmThresholdCalculator.High06}
AlarmDescription: !Sub Notify BillsTopic and UrgentBillsTopic when AWS EstimatedCharges exceed $${BilingAlarmThresholdCalculator.High06}
AlarmActions:
- !ImportValue
Fn::Sub: ${BillingTopicsStackName}-BillsTopic
- !ImportValue
Fn::Sub: ${BillingTopicsStackName}-UrgentBillsTopic
Namespace: AWS/Billing
MetricName: EstimatedCharges
Statistic: Maximum
Dimensions:
- Name: Currency
Value: USD
Period: 21600
EvaluationPeriods: 1
Threshold: !GetAtt BilingAlarmThresholdCalculator.High06
ComparisonOperator: GreaterThanThreshold
Condition: ConfigureHigh10
BillingEstimatedChargesHighAlarm07:
Type: AWS::CloudWatch::Alarm
Properties:
AlarmName: !Sub BillingEstimatedCharges-${BilingAlarmThresholdCalculator.High07}
AlarmDescription: !Sub Notify BillsTopic and UrgentBillsTopic when AWS EstimatedCharges exceed $${BilingAlarmThresholdCalculator.High07}
AlarmActions:
- !ImportValue
Fn::Sub: ${BillingTopicsStackName}-BillsTopic
- !ImportValue
Fn::Sub: ${BillingTopicsStackName}-UrgentBillsTopic
Namespace: AWS/Billing
MetricName: EstimatedCharges
Statistic: Maximum
Dimensions:
- Name: Currency
Value: USD
Period: 21600
EvaluationPeriods: 1
Threshold: !GetAtt BilingAlarmThresholdCalculator.High07
ComparisonOperator: GreaterThanThreshold
Condition: ConfigureHigh10
BillingEstimatedChargesHighAlarm08:
Type: AWS::CloudWatch::Alarm
Properties:
AlarmName: !Sub BillingEstimatedCharges-${BilingAlarmThresholdCalculator.High08}
AlarmDescription: !Sub Notify BillsTopic and UrgentBillsTopic when AWS EstimatedCharges exceed $${BilingAlarmThresholdCalculator.High08}
AlarmActions:
- !ImportValue
Fn::Sub: ${BillingTopicsStackName}-BillsTopic
- !ImportValue
Fn::Sub: ${BillingTopicsStackName}-UrgentBillsTopic
Namespace: AWS/Billing
MetricName: EstimatedCharges
Statistic: Maximum
Dimensions:
- Name: Currency
Value: USD
Period: 21600
EvaluationPeriods: 1
Threshold: !GetAtt BilingAlarmThresholdCalculator.High08
ComparisonOperator: GreaterThanThreshold
Condition: ConfigureHigh10
BillingEstimatedChargesHighAlarm09:
Type: AWS::CloudWatch::Alarm
Properties:
AlarmName: !Sub BillingEstimatedCharges-${BilingAlarmThresholdCalculator.High09}
AlarmDescription: !Sub Notify BillsTopic and UrgentBillsTopic when AWS EstimatedCharges exceed $${BilingAlarmThresholdCalculator.High09}
AlarmActions:
- !ImportValue
Fn::Sub: ${BillingTopicsStackName}-BillsTopic
- !ImportValue
Fn::Sub: ${BillingTopicsStackName}-UrgentBillsTopic
Namespace: AWS/Billing
MetricName: EstimatedCharges
Statistic: Maximum
Dimensions:
- Name: Currency
Value: USD
Period: 21600
EvaluationPeriods: 1
Threshold: !GetAtt BilingAlarmThresholdCalculator.High09
ComparisonOperator: GreaterThanThreshold
Condition: ConfigureHigh10
BillingEstimatedChargesHighAlarm10:
Type: AWS::CloudWatch::Alarm
Properties:
AlarmName: !Sub BillingEstimatedCharges-${BilingAlarmThresholdCalculator.High10}
AlarmDescription: !Sub Notify BillsTopic and UrgentBillsTopic when AWS EstimatedCharges exceed $${BilingAlarmThresholdCalculator.High10}
AlarmActions:
- !ImportValue
Fn::Sub: ${BillingTopicsStackName}-BillsTopic
- !ImportValue
Fn::Sub: ${BillingTopicsStackName}-UrgentBillsTopic
Namespace: AWS/Billing
MetricName: EstimatedCharges
Statistic: Maximum
Dimensions:
- Name: Currency
Value: USD
Period: 21600
EvaluationPeriods: 1
Threshold: !GetAtt BilingAlarmThresholdCalculator.High10
ComparisonOperator: GreaterThanThreshold
Condition: ConfigureHigh10
BillingEstimatedChargesHighAlarm11:
Type: AWS::CloudWatch::Alarm
Properties:
AlarmName: !Sub BillingEstimatedCharges-${BilingAlarmThresholdCalculator.High11}
AlarmDescription: !Sub Notify BillsTopic and UrgentBillsTopic when AWS EstimatedCharges exceed $${BilingAlarmThresholdCalculator.High11}
AlarmActions:
- !ImportValue
Fn::Sub: ${BillingTopicsStackName}-BillsTopic
- !ImportValue
Fn::Sub: ${BillingTopicsStackName}-UrgentBillsTopic
Namespace: AWS/Billing
MetricName: EstimatedCharges
Statistic: Maximum
Dimensions:
- Name: Currency
Value: USD
Period: 21600
EvaluationPeriods: 1
Threshold: !GetAtt BilingAlarmThresholdCalculator.High11
ComparisonOperator: GreaterThanThreshold
Condition: ConfigureHigh20
BillingEstimatedChargesHighAlarm12:
Type: AWS::CloudWatch::Alarm
Properties:
AlarmName: !Sub BillingEstimatedCharges-${BilingAlarmThresholdCalculator.High12}
AlarmDescription: !Sub Notify BillsTopic and UrgentBillsTopic when AWS EstimatedCharges exceed $${BilingAlarmThresholdCalculator.High12}
AlarmActions:
- !ImportValue
Fn::Sub: ${BillingTopicsStackName}-BillsTopic
- !ImportValue
Fn::Sub: ${BillingTopicsStackName}-UrgentBillsTopic
Namespace: AWS/Billing
MetricName: EstimatedCharges
Statistic: Maximum
Dimensions:
- Name: Currency
Value: USD
Period: 21600
EvaluationPeriods: 1
Threshold: !GetAtt BilingAlarmThresholdCalculator.High12
ComparisonOperator: GreaterThanThreshold
Condition: ConfigureHigh20
BillingEstimatedChargesHighAlarm13:
Type: AWS::CloudWatch::Alarm
Properties:
AlarmName: !Sub BillingEstimatedCharges-${BilingAlarmThresholdCalculator.High13}
AlarmDescription: !Sub Notify BillsTopic and UrgentBillsTopic when AWS EstimatedCharges exceed $${BilingAlarmThresholdCalculator.High13}
AlarmActions:
- !ImportValue
Fn::Sub: ${BillingTopicsStackName}-BillsTopic
- !ImportValue
Fn::Sub: ${BillingTopicsStackName}-UrgentBillsTopic
Namespace: AWS/Billing
MetricName: EstimatedCharges
Statistic: Maximum
Dimensions:
- Name: Currency
Value: USD
Period: 21600
EvaluationPeriods: 1
Threshold: !GetAtt BilingAlarmThresholdCalculator.High13
ComparisonOperator: GreaterThanThreshold
Condition: ConfigureHigh20
BillingEstimatedChargesHighAlarm14:
Type: AWS::CloudWatch::Alarm
Properties:
AlarmName: !Sub BillingEstimatedCharges-${BilingAlarmThresholdCalculator.High14}
AlarmDescription: !Sub Notify BillsTopic and UrgentBillsTopic when AWS EstimatedCharges exceed $${BilingAlarmThresholdCalculator.High14}
AlarmActions:
- !ImportValue
Fn::Sub: ${BillingTopicsStackName}-BillsTopic
- !ImportValue
Fn::Sub: ${BillingTopicsStackName}-UrgentBillsTopic
Namespace: AWS/Billing
MetricName: EstimatedCharges