feat(gcp): add PCI DSS 4.0 (#7010)

This commit is contained in:
Pedro Martín
2025-02-21 11:49:20 +01:00
committed by GitHub
parent 75f86d7267
commit 8a144a4046
3 changed files with 22339 additions and 1 deletions

View File

@@ -0,0 +1,23 @@
import warnings
from dashboard.common_methods import get_section_containers_format3
warnings.filterwarnings("ignore")
def get_table(data):
aux = data[
[
"REQUIREMENTS_ID",
"REQUIREMENTS_ATTRIBUTES_SECTION",
"REQUIREMENTS_DESCRIPTION",
"CHECKID",
"STATUS",
"REGION",
"ACCOUNTID",
"RESOURCEID",
]
]
return get_section_containers_format3(
aux, "REQUIREMENTS_ATTRIBUTES_SECTION", "REQUIREMENTS_ID"
)