feat(shub): add Security Hub integration (#1255)

This commit is contained in:
Sergio Garcia
2022-07-21 12:22:56 +02:00
committed by GitHub
parent 67834c3f8b
commit 7d0a95e98f
10 changed files with 171 additions and 16 deletions

View File

@@ -41,7 +41,7 @@ class iam_disable_30_days_credentials(Check):
else:
report = Check_Report(self.metadata)
report.status = "PASS"
report.result_extended = "There is no IAM users"
report.status_extended = "There is no IAM users"
report.region = iam_client.region
findings.append(report)

View File

@@ -43,5 +43,6 @@ class iam_disable_90_days_credentials(Check):
report.status = "PASS"
report.status_extended = "There is no IAM users"
report.region = "us-east-1"
findings.append(report)
return findings