Skip to content

Commit d41fe7c

Browse files
authored
Merge pull request #92 from andywick-aws/securityhub-updates
Security Hub solution updates
2 parents 2976526 + 7a1e78d commit d41fe7c

File tree

10 files changed

+336
-352
lines changed

10 files changed

+336
-352
lines changed

.flake8

+3-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ select = A,B,B9,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z,0,1,2,3,4,5,6,7,
1717
ignore =
1818
FS003, # f-string missing prefix (false positives with raw strings)
1919
T003, # add link on issue into TODO
20-
W503 # Line break occurred before binary operator
20+
W503, # Line break occurred before binary operator
21+
E203, # whitespace before ':'
22+
TYP001 # guard import by `if False: # TYPE_CHECKING`
2123

2224
# disable flake8 checks for Lambda function source code that will be used inline. (max 4096 characters)
2325
per-file-ignores =

CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
## Table of Contents<!-- omit in toc -->
44

55
- [Introduction](#introduction)
6+
- [2022-04-14](#2022-04-14)
67
- [2022-04-10](#2022-04-10)
78
- [2022-04-04](#2022-04-04)
89
- [2022-03-29](#2022-03-29)
@@ -25,6 +26,20 @@ All notable changes to this project will be documented in this file.
2526

2627
---
2728

29+
## 2022-04-14
30+
31+
### Changed<!-- omit in toc -->
32+
33+
- [Security Hub Organization](aws_sra_examples/solutions/securityhub/securityhub_org) updates:
34+
- Use environment variables instead of an SSM parameter for configuration parameters.
35+
- Batch SNS messages in groups of 10 instead of individual messages for each account.
36+
- Removed boto3 from the requirements.txt to use the recently updated Lambda runtime default boto3.
37+
- Updated the .flake8 configuration to exclude E203 (whitespace before ':') and TYP001 (guard import by `if False: # TYPE_CHECKING`)
38+
39+
### Fixed<!-- omit in toc -->
40+
41+
- [Security Hub Organization](aws_sra_examples/solutions/securityhub/securityhub_org) fix for enabling the management account before adding it as a member in the delegated admin account configuration.
42+
2843
## 2022-04-10
2944

3045
### Added<!-- omit in toc -->

0 commit comments

Comments
 (0)