feat(dashboard): add AWS AI Security Framework compliance view (#11475)

This commit is contained in:
Pedro Martín
2026-06-05 13:28:31 +02:00
committed by GitHub
parent d4bbc8b5ad
commit a7d180ea5b
2 changed files with 28 additions and 0 deletions
@@ -0,0 +1,27 @@
import warnings
from dashboard.common_methods import get_section_containers_3_levels
warnings.filterwarnings("ignore")
def get_table(data):
aux = data[
[
"REQUIREMENTS_ATTRIBUTES_SECTION",
"REQUIREMENTS_ATTRIBUTES_SUBSECTION",
"NAME",
"CHECKID",
"STATUS",
"REGION",
"ACCOUNTID",
"RESOURCEID",
]
]
return get_section_containers_3_levels(
aux,
"REQUIREMENTS_ATTRIBUTES_SECTION",
"REQUIREMENTS_ATTRIBUTES_SUBSECTION",
"NAME",
)