├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── conf └── params.sh ├── deploy.sh ├── src ├── cfn │ ├── copy-s3obj-to-regional-s3bucket.yaml │ └── main.yaml └── functions │ ├── aggregated_severity.py │ ├── import_findings_security_hub.py │ ├── junit_report.py │ ├── requirements.txt │ ├── securityhub.py │ └── upload.py └── test └── repo └── cfn └── test.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | src/functions/external 2 | .DS_Store 3 | dist 4 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/cfn-security-scan-integration/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/cfn-security-scan-integration/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/cfn-security-scan-integration/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/cfn-security-scan-integration/HEAD/README.md -------------------------------------------------------------------------------- /conf/params.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/cfn-security-scan-integration/HEAD/conf/params.sh -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/cfn-security-scan-integration/HEAD/deploy.sh -------------------------------------------------------------------------------- /src/cfn/copy-s3obj-to-regional-s3bucket.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/cfn-security-scan-integration/HEAD/src/cfn/copy-s3obj-to-regional-s3bucket.yaml -------------------------------------------------------------------------------- /src/cfn/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/cfn-security-scan-integration/HEAD/src/cfn/main.yaml -------------------------------------------------------------------------------- /src/functions/aggregated_severity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/cfn-security-scan-integration/HEAD/src/functions/aggregated_severity.py -------------------------------------------------------------------------------- /src/functions/import_findings_security_hub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/cfn-security-scan-integration/HEAD/src/functions/import_findings_security_hub.py -------------------------------------------------------------------------------- /src/functions/junit_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/cfn-security-scan-integration/HEAD/src/functions/junit_report.py -------------------------------------------------------------------------------- /src/functions/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/cfn-security-scan-integration/HEAD/src/functions/requirements.txt -------------------------------------------------------------------------------- /src/functions/securityhub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/cfn-security-scan-integration/HEAD/src/functions/securityhub.py -------------------------------------------------------------------------------- /src/functions/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/cfn-security-scan-integration/HEAD/src/functions/upload.py -------------------------------------------------------------------------------- /test/repo/cfn/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/cfn-security-scan-integration/HEAD/test/repo/cfn/test.yaml --------------------------------------------------------------------------------