Skip to content

Commit 9d4f68f

Browse files
authored
feat(compliance): add CIS 6.0 for the AWS provider (#10127)
1 parent b5e721a commit 9d4f68f

File tree

3 files changed

+1441
-0
lines changed

3 files changed

+1441
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
import warnings
2+
3+
from dashboard.common_methods import get_section_containers_cis
4+
5+
warnings.filterwarnings("ignore")
6+
7+
8+
def get_table(data):
9+
aux = data[
10+
[
11+
"REQUIREMENTS_ID",
12+
"REQUIREMENTS_DESCRIPTION",
13+
"REQUIREMENTS_ATTRIBUTES_SECTION",
14+
"CHECKID",
15+
"STATUS",
16+
"REGION",
17+
"ACCOUNTID",
18+
"RESOURCEID",
19+
]
20+
].copy()
21+
22+
return get_section_containers_cis(
23+
aux, "REQUIREMENTS_ID", "REQUIREMENTS_ATTRIBUTES_SECTION"
24+
)

prowler/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ All notable changes to the **Prowler SDK** are documented in this file.
2727
- `entra_seamless_sso_disabled` check for m365 provider [(#10086)](https://github.com/prowler-cloud/prowler/pull/10086)
2828
- Registry scan mode for `image` provider: enumerate and scan all images from OCI standard, Docker Hub, and ECR [(#9985)](https://github.com/prowler-cloud/prowler/pull/9985)
2929
- Add file descriptor limits (`ulimits`) to Docker Compose worker services to prevent `Too many open files` errors [(#10107)](https://github.com/prowler-cloud/prowler/pull/10107)
30+
- CIS 6.0 for the AWS provider [(#10127)](https://github.com/prowler-cloud/prowler/pull/10127)
3031

3132
### 🔄 Changed
3233

0 commit comments

Comments
 (0)