feat(compliance): add SecNumCloud 3.2 for Azure (#10358)

This commit is contained in:
Pedro Martín
2026-03-18 08:28:40 +01:00
committed by GitHub
parent cb03573599
commit 8c2e2332d7
3 changed files with 1529 additions and 0 deletions
@@ -0,0 +1,24 @@
import warnings
from dashboard.common_methods import get_section_containers_format3
warnings.filterwarnings("ignore")
def get_table(data):
aux = data[
[
"REQUIREMENTS_ID",
"REQUIREMENTS_DESCRIPTION",
"REQUIREMENTS_ATTRIBUTES_SECTION",
"CHECKID",
"STATUS",
"REGION",
"ACCOUNTID",
"RESOURCEID",
]
].copy()
return get_section_containers_format3(
aux, "REQUIREMENTS_ATTRIBUTES_SECTION", "REQUIREMENTS_ID"
)