-
Notifications
You must be signed in to change notification settings - Fork 142
/
handler.py
1053 lines (953 loc) · 38.1 KB
/
handler.py
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
import json
import boto3
import os
import re
import time
import decimal
import socket
import configparser
from dateutil import parser
from datetime import datetime, timedelta
from urllib.parse import urlencode
from urllib.request import Request, urlopen, URLError, HTTPError
from botocore.config import Config
from botocore.exceptions import ClientError
from boto3.dynamodb.conditions import Key, Attr
from messagegenerator import (
get_message_for_slack,
get_org_message_for_slack,
get_message_for_chime,
get_org_message_for_chime,
get_message_for_teams,
get_org_message_for_teams,
get_message_for_email,
get_org_message_for_email,
get_detail_for_eventbridge,
)
print("boto3 version: ", boto3.__version__)
# query active health API endpoint
health_dns = socket.gethostbyname_ex("global.health.amazonaws.com")
(current_endpoint, global_endpoint, ip_endpoint) = health_dns
health_active_list = current_endpoint.split(".")
health_active_region = health_active_list[1]
print("current health region: ", health_active_region)
# create a boto3 health client w/ backoff/retry
config = Config(
region_name=health_active_region,
retries=dict(
max_attempts=10 # org view apis have a lower tps than the single
# account apis so we need to use larger
# backoff/retry values than than the boto defaults
),
)
# TODO decide if account_name should be blank on error
# Get Account Name
def get_account_name(account_id):
org_client = get_sts_token("organizations")
try:
account_name = org_client.describe_account(AccountId=account_id)["Account"][
"Name"
]
except Exception:
account_name = account_id
return account_name
def send_alert(event_details, affected_accounts, affected_entities, event_type):
slack_url = get_secrets()["slack"]
teams_url = get_secrets()["teams"]
chime_url = get_secrets()["chime"]
SENDER = os.environ["FROM_EMAIL"]
RECIPIENT = os.environ["TO_EMAIL"]
event_bus_name = get_secrets()["eventbusname"]
# get the list of resources from the array of affected entities
resources = get_resources_from_entities(affected_entities)
if "None" not in event_bus_name:
try:
print("Sending the alert to Event Bridge")
send_to_eventbridge(
get_detail_for_eventbridge(event_details, affected_entities),
event_type,
resources,
event_bus_name,
)
except HTTPError as e:
print(
"Got an error while sending message to EventBridge: ", e.code, e.reason
)
except URLError as e:
print("Server connection failed: ", e.reason)
pass
if "hooks.slack.com/services" in slack_url:
try:
print("Sending the alert to Slack Webhook Channel")
send_to_slack(
get_message_for_slack(
event_details,
event_type,
affected_accounts,
resources,
slack_webhook="webhook",
),
slack_url,
)
except HTTPError as e:
print("Got an error while sending message to Slack: ", e.code, e.reason)
except URLError as e:
print("Server connection failed: ", e.reason)
pass
if "hooks.slack.com/workflows" in slack_url:
try:
print("Sending the alert to Slack Workflows Channel")
send_to_slack(
get_message_for_slack(
event_details,
event_type,
affected_accounts,
resources,
slack_webhook="workflow",
),
slack_url,
)
except HTTPError as e:
print("Got an error while sending message to Slack: ", e.code, e.reason)
except URLError as e:
print("Server connection failed: ", e.reason)
pass
if "office.com/webhook" in teams_url:
try:
print("Sending the alert to Teams")
send_to_teams(
get_message_for_teams(
event_details, event_type, affected_accounts, resources
),
teams_url,
)
except HTTPError as e:
print("Got an error while sending message to Teams: ", e.code, e.reason)
except URLError as e:
print("Server connection failed: ", e.reason)
pass
# validate sender and recipient's email addresses
if "[email protected]" not in SENDER and RECIPIENT:
try:
print("Sending the alert to the emails")
send_email(event_details, event_type, affected_accounts, resources)
except HTTPError as e:
print("Got an error while sending message to Email: ", e.code, e.reason)
except URLError as e:
print("Server connection failed: ", e.reason)
pass
if "hooks.chime.aws/incomingwebhooks" in chime_url:
try:
print("Sending the alert to Chime channel")
send_to_chime(
get_message_for_chime(
event_details, event_type, affected_accounts, resources
),
chime_url,
)
except HTTPError as e:
print("Got an error while sending message to Chime: ", e.code, e.reason)
except URLError as e:
print("Server connection failed: ", e.reason)
pass
def send_org_alert(
event_details, affected_org_accounts, affected_org_entities, event_type
):
slack_url = get_secrets()["slack"]
teams_url = get_secrets()["teams"]
chime_url = get_secrets()["chime"]
SENDER = os.environ["FROM_EMAIL"]
RECIPIENT = os.environ["TO_EMAIL"]
event_bus_name = get_secrets()["eventbusname"]
# get the list of resources from the array of affected entities
resources = get_resources_from_entities(affected_org_entities)
if "None" not in event_bus_name:
try:
print("Sending the org alert to Event Bridge")
send_to_eventbridge(
get_detail_for_eventbridge(event_details, affected_org_entities),
event_type,
resources,
event_bus_name,
)
except HTTPError as e:
print(
"Got an error while sending message to EventBridge: ", e.code, e.reason
)
except URLError as e:
print("Server connection failed: ", e.reason)
pass
if "hooks.slack.com/services" in slack_url:
try:
print("Sending the alert to Slack Webhook Channel")
send_to_slack(
get_org_message_for_slack(
event_details,
event_type,
affected_org_accounts,
resources,
slack_webhook="webhook",
),
slack_url,
)
except HTTPError as e:
print("Got an error while sending message to Slack: ", e.code, e.reason)
except URLError as e:
print("Server connection failed: ", e.reason)
pass
if "hooks.slack.com/workflows" in slack_url:
try:
print("Sending the alert to Slack Workflow Channel")
send_to_slack(
get_org_message_for_slack(
event_details,
event_type,
affected_org_accounts,
resources,
slack_webhook="workflow",
),
slack_url,
)
except HTTPError as e:
print("Got an error while sending message to Slack: ", e.code, e.reason)
except URLError as e:
print("Server connection failed: ", e.reason)
pass
if "office.com/webhook" in teams_url:
try:
print("Sending the alert to Teams")
send_to_teams(
get_org_message_for_teams(
event_details, event_type, affected_org_accounts, resources
),
teams_url,
)
except HTTPError as e:
print("Got an error while sending message to Teams: ", e.code, e.reason)
except URLError as e:
print("Server connection failed: ", e.reason)
pass
# validate sender and recipient's email addresses
if "[email protected]" not in SENDER and RECIPIENT:
try:
print("Sending the alert to the emails")
send_org_email(event_details, event_type, affected_org_accounts, resources)
except HTTPError as e:
print("Got an error while sending message to Email: ", e.code, e.reason)
except URLError as e:
print("Server connection failed: ", e.reason)
pass
if "hooks.chime.aws/incomingwebhooks" in chime_url:
try:
print("Sending the alert to Chime channel")
send_to_chime(
get_org_message_for_chime(
event_details, event_type, affected_org_accounts, resources
),
chime_url,
)
except HTTPError as e:
print("Got an error while sending message to Chime: ", e.code, e.reason)
except URLError as e:
print("Server connection failed: ", e.reason)
pass
def send_to_slack(message, webhookurl):
slack_message = message
req = Request(
webhookurl,
data=json.dumps(slack_message).encode("utf-8"),
headers={"content-type": "application/json"},
)
try:
response = urlopen(req)
response.read()
except HTTPError as e:
print("Request failed : ", e.code, e.reason)
except URLError as e:
print("Server connection failed: ", e.reason, e.reason)
def send_to_chime(message, webhookurl):
chime_message = {"Content": message}
req = Request(
webhookurl,
data=json.dumps(chime_message).encode("utf-8"),
headers={"content-Type": "application/json"},
)
try:
response = urlopen(req)
response.read()
except HTTPError as e:
print("Request failed : ", e.code, e.reason)
except URLError as e:
print("Server connection failed: ", e.reason, e.reason)
def send_to_teams(message, webhookurl):
teams_message = message
req = Request(
webhookurl,
data=json.dumps(teams_message).encode("utf-8"),
headers={"content-type": "application/json"},
)
try:
response = urlopen(req)
response.read()
except HTTPError as e:
print("Request failed : ", e.code, e.reason)
except URLError as e:
print("Server connection failed: ", e.reason, e.reason)
def send_email(event_details, eventType, affected_accounts, affected_entities):
SENDER = os.environ["FROM_EMAIL"]
RECIPIENT = os.environ["TO_EMAIL"].split(",")
# AWS_REGIONS = "us-east-1"
AWS_REGION = os.environ["AWS_REGION"]
SUBJECT = os.environ["EMAIL_SUBJECT"]
BODY_HTML = get_message_for_email(
event_details, eventType, affected_accounts, affected_entities
)
client = boto3.client("ses", region_name=AWS_REGION)
response = client.send_email(
Source=SENDER,
Destination={"ToAddresses": RECIPIENT},
Message={
"Body": {
"Html": {"Data": BODY_HTML},
},
"Subject": {
"Charset": "UTF-8",
"Data": SUBJECT,
},
},
)
def send_org_email(
event_details, eventType, affected_org_accounts, affected_org_entities
):
SENDER = os.environ["FROM_EMAIL"]
RECIPIENT = os.environ["TO_EMAIL"].split(",")
# AWS_REGION = "us-east-1"
AWS_REGION = os.environ["AWS_REGION"]
SUBJECT = os.environ["EMAIL_SUBJECT"]
BODY_HTML = get_org_message_for_email(
event_details, eventType, affected_org_accounts, affected_org_entities
)
client = boto3.client("ses", region_name=AWS_REGION)
response = client.send_email(
Source=SENDER,
Destination={"ToAddresses": RECIPIENT},
Message={
"Body": {
"Html": {"Data": BODY_HTML},
},
"Subject": {
"Charset": "UTF-8",
"Data": SUBJECT,
},
},
)
# non-organization view affected accounts
def get_health_accounts(health_client, event, event_arn):
affected_accounts = []
event_accounts_paginator = health_client.get_paginator("describe_affected_entities")
event_accounts_page_iterator = event_accounts_paginator.paginate(
filter={"eventArns": [event_arn]}
)
for event_accounts_page in event_accounts_page_iterator:
json_event_accounts = json.dumps(event_accounts_page, default=myconverter)
parsed_event_accounts = json.loads(json_event_accounts)
try:
affected_accounts.append(
parsed_event_accounts["entities"][0]["awsAccountId"]
)
except Exception:
affected_accounts = []
return affected_accounts
# organization view affected accounts
def get_health_org_accounts(health_client, event, event_arn):
affected_org_accounts = []
event_accounts_paginator = health_client.get_paginator(
"describe_affected_accounts_for_organization"
)
event_accounts_page_iterator = event_accounts_paginator.paginate(eventArn=event_arn)
for event_accounts_page in event_accounts_page_iterator:
json_event_accounts = json.dumps(event_accounts_page, default=myconverter)
parsed_event_accounts = json.loads(json_event_accounts)
affected_org_accounts = affected_org_accounts + (
parsed_event_accounts["affectedAccounts"]
)
return affected_org_accounts
# get the array of affected entities for all affected accounts and return as an array of JSON objects
def get_affected_entities(health_client, event_arn, affected_accounts, is_org_mode):
affected_entity_array = []
for account in affected_accounts:
account_name = ""
if is_org_mode:
event_entities_paginator = health_client.get_paginator(
"describe_affected_entities_for_organization"
)
event_entities_page_iterator = event_entities_paginator.paginate(
organizationEntityFilters=[
{"awsAccountId": account, "eventArn": event_arn}
]
)
account_name = get_account_name(account)
else:
event_entities_paginator = health_client.get_paginator(
"describe_affected_entities"
)
event_entities_page_iterator = event_entities_paginator.paginate(
filter={"eventArns": [event_arn]}
)
for event_entities_page in event_entities_page_iterator:
json_event_entities = json.dumps(event_entities_page, default=myconverter)
parsed_event_entities = json.loads(json_event_entities)
for entity in parsed_event_entities["entities"]:
entity.pop(
"entityArn"
) # remove entityArn to avoid confusion with the arn of the entityValue (not present)
entity.pop("eventArn") # remove eventArn duplicate of detail.arn
entity.pop("lastUpdatedTime") # remove for brevity
if is_org_mode:
entity["awsAccountName"] = account_name
affected_entity_array.append(entity)
return affected_entity_array
# COMMON
# get the entityValues from the array and return as an array (of strings) for use with chat channels
# don't list entities which are accounts (handled separately for chat applications)
def get_resources_from_entities(affected_entity_array):
resources = []
for entity in affected_entity_array:
if entity["entityValue"] == "UNKNOWN":
# UNKNOWN indicates a public/non-accountspecific event, no resources
pass
elif (
entity["entityValue"] != "AWS_ACCOUNT"
and entity["entityValue"] != entity["awsAccountId"]
):
resources.append(entity["entityValue"])
return resources
# For Customers using AWS Organizations
def update_org_ddb(
event_arn,
str_update,
status_code,
event_details,
affected_org_accounts,
affected_org_entities,
):
# open dynamoDB
dynamodb = boto3.resource("dynamodb")
ddb_table = os.environ["DYNAMODB_TABLE"]
aha_ddb_table = dynamodb.Table(ddb_table)
event_latestDescription = event_details["successfulSet"][0]["eventDescription"][
"latestDescription"
]
# set time parameters
delta_hours = os.environ["EVENT_SEARCH_BACK"]
delta_hours = int(delta_hours)
delta_hours_sec = delta_hours * 3600
# formatting time in seconds
srt_ddb_format_full = "%Y-%m-%d %H:%M:%S"
str_ddb_format_sec = "%s"
sec_now = datetime.strftime(datetime.now(), str_ddb_format_sec)
# check if event arn already exists
try:
response = aha_ddb_table.get_item(Key={"arn": event_arn})
except ClientError as e:
print(e.response["Error"]["Message"])
else:
is_item_response = response.get("Item")
if is_item_response == None:
print(datetime.now().strftime(srt_ddb_format_full) + ": record not found")
# write to dynamodb
response = aha_ddb_table.put_item(
Item={
"arn": event_arn,
"lastUpdatedTime": str_update,
"added": sec_now,
"ttl": int(sec_now) + delta_hours_sec + 86400,
"statusCode": status_code,
"affectedAccountIDs": affected_org_accounts,
"latestDescription": event_latestDescription
# Cleanup: DynamoDB entry deleted 24 hours after last update
}
)
affected_org_accounts_details = [
f"{get_account_name(account_id)} ({account_id})"
for account_id in affected_org_accounts
]
# send to configured endpoints
if status_code != "closed":
send_org_alert(
event_details,
affected_org_accounts_details,
affected_org_entities,
event_type="create",
)
else:
send_org_alert(
event_details,
affected_org_accounts_details,
affected_org_entities,
event_type="resolve",
)
else:
item = response["Item"]
if item["lastUpdatedTime"] != str_update and (
item["statusCode"] != status_code
or item["latestDescription"] != event_latestDescription
or item["affectedAccountIDs"] != affected_org_accounts
):
print(
datetime.now().strftime(srt_ddb_format_full)
+ ": last Update is different"
)
# write to dynamodb
response = aha_ddb_table.put_item(
Item={
"arn": event_arn,
"lastUpdatedTime": str_update,
"added": sec_now,
"ttl": int(sec_now) + delta_hours_sec + 86400,
"statusCode": status_code,
"affectedAccountIDs": affected_org_accounts,
"latestDescription": event_latestDescription
# Cleanup: DynamoDB entry deleted 24 hours after last update
}
)
affected_org_accounts_details = [
f"{get_account_name(account_id)} ({account_id})"
for account_id in affected_org_accounts
]
# send to configured endpoints
if status_code != "closed":
send_org_alert(
event_details,
affected_org_accounts_details,
affected_org_entities,
event_type="create",
)
else:
send_org_alert(
event_details,
affected_org_accounts_details,
affected_org_entities,
event_type="resolve",
)
else:
print("No new updates found, checking again in 1 minute.")
# For Customers not using AWS Organizations
def update_ddb(
event_arn,
str_update,
status_code,
event_details,
affected_accounts,
affected_entities,
):
# open dynamoDB
dynamodb = boto3.resource("dynamodb")
ddb_table = os.environ["DYNAMODB_TABLE"]
aha_ddb_table = dynamodb.Table(ddb_table)
event_latestDescription = event_details["successfulSet"][0]["eventDescription"][
"latestDescription"
]
# set time parameters
delta_hours = os.environ["EVENT_SEARCH_BACK"]
delta_hours = int(delta_hours)
delta_hours_sec = delta_hours * 3600
# formatting time in seconds
srt_ddb_format_full = "%Y-%m-%d %H:%M:%S"
str_ddb_format_sec = "%s"
sec_now = datetime.strftime(datetime.now(), str_ddb_format_sec)
# check if event arn already exists
try:
response = aha_ddb_table.get_item(Key={"arn": event_arn})
except ClientError as e:
print(e.response["Error"]["Message"])
else:
is_item_response = response.get("Item")
if is_item_response == None:
print(datetime.now().strftime(srt_ddb_format_full) + ": record not found")
# write to dynamodb
response = aha_ddb_table.put_item(
Item={
"arn": event_arn,
"lastUpdatedTime": str_update,
"added": sec_now,
"ttl": int(sec_now) + delta_hours_sec + 86400,
"statusCode": status_code,
"affectedAccountIDs": affected_accounts,
"latestDescription": event_latestDescription
# Cleanup: DynamoDB entry deleted 24 hours after last update
}
)
affected_accounts_details = affected_accounts
# send to configured endpoints
if status_code != "closed":
send_alert(
event_details,
affected_accounts_details,
affected_entities,
event_type="create",
)
else:
send_alert(
event_details,
affected_accounts_details,
affected_entities,
event_type="resolve",
)
else:
item = response["Item"]
if item["lastUpdatedTime"] != str_update and (
item["statusCode"] != status_code
or item["latestDescription"] != event_latestDescription
or item["affectedAccountIDs"] != affected_accounts
):
print(
datetime.now().strftime(srt_ddb_format_full)
+ ": last Update is different"
)
# write to dynamodb
response = aha_ddb_table.put_item(
Item={
"arn": event_arn,
"lastUpdatedTime": str_update,
"added": sec_now,
"ttl": int(sec_now) + delta_hours_sec + 86400,
"statusCode": status_code,
"affectedAccountIDs": affected_accounts,
"latestDescription": event_latestDescription
# Cleanup: DynamoDB entry deleted 24 hours after last update
}
)
affected_accounts_details = [
f"{get_account_name(account_id)} ({account_id})"
for account_id in affected_accounts
]
# send to configured endpoints
if status_code != "closed":
send_alert(
event_details,
affected_accounts_details,
affected_entities,
event_type="create",
)
else:
send_alert(
event_details,
affected_accounts_details,
affected_entities,
event_type="resolve",
)
else:
print("No new updates found, checking again in 1 minute.")
def get_secrets():
secret_teams_name = "MicrosoftChannelID"
secret_slack_name = "SlackChannelID"
secret_chime_name = "ChimeChannelID"
region_name = os.environ["AWS_REGION"]
event_bus_name = "EventBusName"
secret_assumerole_name = "AssumeRoleArn"
secrets = {}
# create a Secrets Manager client
session = boto3.session.Session()
client = session.client(service_name="secretsmanager", region_name=region_name)
# Iteration through the configured AWS Secrets
secrets["teams"] = (
get_secret(secret_teams_name, client) if "Teams" in os.environ else "None"
)
secrets["slack"] = (
get_secret(secret_slack_name, client) if "Slack" in os.environ else "None"
)
secrets["chime"] = (
get_secret(secret_chime_name, client) if "Chime" in os.environ else "None"
)
secrets["ahaassumerole"] = (
get_secret(secret_assumerole_name, client)
if os.environ["MANAGEMENT_ROLE_ARN"] != "None"
else "None"
)
secrets["eventbusname"] = (
get_secret(event_bus_name, client) if "Eventbridge" in os.environ else "None"
)
# uncomment below to verify secrets values
# print("Secrets: ",secrets)
return secrets
def get_secret(secret_name, client):
try:
get_secret_value_response = client.get_secret_value(SecretId=secret_name)
except ClientError as e:
print(f"There was an error with the {secret_name} secret: ", e.response)
return "None"
finally:
if "SecretString" not in get_secret_value_response:
return "None"
return get_secret_value_response["SecretString"]
def describe_events(health_client):
str_ddb_format_sec = "%s"
# set hours to search back in time for events
delta_hours = os.environ["EVENT_SEARCH_BACK"]
health_event_type = os.environ["HEALTH_EVENT_TYPE"]
delta_hours = int(delta_hours)
time_delta = datetime.now() - timedelta(hours=delta_hours)
print("Searching for events and updates made after: ", time_delta)
dict_regions = os.environ["REGIONS"]
str_filter = {"lastUpdatedTimes": [{"from": time_delta}]}
if health_event_type == "issue":
event_type_filter = {"eventTypeCategories": ["issue", "investigation"]}
print(
"AHA will be monitoring events with event type categories as 'issue' only!"
)
str_filter.update(event_type_filter)
if dict_regions != "all regions":
dict_regions = [region.strip() for region in dict_regions.split(",")]
print(
"AHA will monitor for events only in the selected regions: ", dict_regions
)
region_filter = {"regions": dict_regions}
str_filter.update(region_filter)
event_paginator = health_client.get_paginator("describe_events")
event_page_iterator = event_paginator.paginate(filter=str_filter)
for response in event_page_iterator:
events = response.get("events", [])
aws_events = json.dumps(events, default=myconverter)
aws_events = json.loads(aws_events)
print("Event(s) Received: ", json.dumps(aws_events))
if len(aws_events) > 0: # if there are new event(s) from AWS
for event in aws_events:
event_arn = event["arn"]
status_code = event["statusCode"]
str_update = parser.parse((event["lastUpdatedTime"]))
str_update = str_update.strftime(str_ddb_format_sec)
# get non-organizational view requirements
affected_accounts = get_health_accounts(health_client, event, event_arn)
affected_entities = get_affected_entities(
health_client, event_arn, affected_accounts, is_org_mode=False
)
# get event details
event_details = json.dumps(
describe_event_details(health_client, event_arn),
default=myconverter,
)
event_details = json.loads(event_details)
print("Event Details: ", event_details)
if event_details["successfulSet"] == []:
print(
"An error occured with account:",
event_details["failedSet"][0]["awsAccountId"],
"due to:",
event_details["failedSet"][0]["errorName"],
":",
event_details["failedSet"][0]["errorMessage"],
)
continue
else:
# write to dynamoDB for persistence
update_ddb(
event_arn,
str_update,
status_code,
event_details,
affected_accounts,
affected_entities,
)
else:
print("No events found in time frame, checking again in 1 minute.")
def describe_org_events(health_client):
str_ddb_format_sec = "%s"
# set hours to search back in time for events
delta_hours = os.environ["EVENT_SEARCH_BACK"]
health_event_type = os.environ["HEALTH_EVENT_TYPE"]
dict_regions = os.environ["REGIONS"]
delta_hours = int(delta_hours)
time_delta = datetime.now() - timedelta(hours=delta_hours)
print("Searching for events and updates made after: ", time_delta)
str_filter = {"lastUpdatedTime": {"from": time_delta}}
if health_event_type == "issue":
event_type_filter = {"eventTypeCategories": ["issue", "investigation"]}
print(
"AHA will be monitoring events with event type categories as 'issue' only!"
)
str_filter.update(event_type_filter)
if dict_regions != "all regions":
dict_regions = [region.strip() for region in dict_regions.split(",")]
print(
"AHA will monitor for events only in the selected regions: ", dict_regions
)
region_filter = {"regions": dict_regions}
str_filter.update(region_filter)
org_event_paginator = health_client.get_paginator(
"describe_events_for_organization"
)
org_event_page_iterator = org_event_paginator.paginate(filter=str_filter)
for response in org_event_page_iterator:
events = response.get("events", [])
aws_events = json.dumps(events, default=myconverter)
aws_events = json.loads(aws_events)
print("Event(s) Received: ", json.dumps(aws_events))
if len(aws_events) > 0:
for event in aws_events:
event_arn = event["arn"]
status_code = event["statusCode"]
str_update = parser.parse((event["lastUpdatedTime"]))
str_update = str_update.strftime(str_ddb_format_sec)
# get organizational view requirements
affected_org_accounts = get_health_org_accounts(
health_client, event, event_arn
)
if (
os.environ["ACCOUNT_IDS"] == "None"
or os.environ["ACCOUNT_IDS"] == ""
):
affected_org_accounts = affected_org_accounts
update_org_ddb_flag = True
else:
account_ids_to_filter = getAccountIDs()
if affected_org_accounts != []:
focused_org_accounts = [
i
for i in affected_org_accounts
if i not in account_ids_to_filter
]
print("Focused list is ", focused_org_accounts)
if focused_org_accounts != []:
update_org_ddb_flag = True
affected_org_accounts = focused_org_accounts
else:
update_org_ddb_flag = False
print("Focused Organization Account list is empty")
else:
update_org_ddb_flag = True
affected_org_entities = get_affected_entities(
health_client, event_arn, affected_org_accounts, is_org_mode=True
)
# get event details
event_details = json.dumps(
describe_org_event_details(
health_client, event_arn, affected_org_accounts
),
default=myconverter,
)
event_details = json.loads(event_details)
print("Event Details: ", event_details)
if event_details["successfulSet"] == []:
print(
"An error occured with account:",
event_details["failedSet"][0]["awsAccountId"],
"due to:",
event_details["failedSet"][0]["errorName"],
":",
event_details["failedSet"][0]["errorMessage"],
)
continue
else:
# write to dynamoDB for persistence
if update_org_ddb_flag:
update_org_ddb(
event_arn,
str_update,
status_code,
event_details,
affected_org_accounts,
affected_org_entities,
)
else:
print("No events found in time frame, checking again in 1 minute.")
def myconverter(json_object):
if isinstance(json_object, datetime):
return json_object.__str__()
def describe_event_details(health_client, event_arn):
response = health_client.describe_event_details(
eventArns=[event_arn],
)
return response
def describe_org_event_details(health_client, event_arn, affected_org_accounts):
if len(affected_org_accounts) >= 1:
affected_account_ids = affected_org_accounts[0]
response = health_client.describe_event_details_for_organization(
organizationEventDetailFilters=[
{"awsAccountId": affected_account_ids, "eventArn": event_arn}
]
)
else:
response = describe_event_details(health_client, event_arn)
return response
def eventbridge_generate_entries(message, resources, event_bus):
return [
{
"Source": "aha",
"DetailType": "AHA Event",
"Resources": resources,
"Detail": json.dumps(message),
"EventBusName": event_bus,
},
]
def send_to_eventbridge(message, event_type, resources, event_bus):
print(
"Sending response to Eventbridge - event_type, event_bus", event_type, event_bus
)
client = boto3.client("events")
entries = eventbridge_generate_entries(message, resources, event_bus)
print("Sending entries: ", entries)
response = client.put_events(Entries=entries)
print("Response from eventbridge is:", response)
def getAccountIDs():
account_ids = ""
key_file_name = os.environ["ACCOUNT_IDS"]
print("Key filename is - ", key_file_name)
if os.path.splitext(os.path.basename(key_file_name))[1] == ".csv":
s3 = boto3.client("s3")
data = s3.get_object(Bucket=os.environ["S3_BUCKET"], Key=key_file_name)
account_ids = [account.decode("utf-8") for account in data["Body"].iter_lines()]
else:
print("Key filename is not a .csv file")
print(account_ids)
return account_ids
def get_sts_token(service):
assumeRoleArn = get_secrets()["ahaassumerole"]
boto3_client = None
if "arn:aws:iam::" in assumeRoleArn:
ACCESS_KEY = []
SECRET_KEY = []
SESSION_TOKEN = []