feat(compliance): Add RBI Cyber Security Framework for GCP (#10339)

Co-authored-by: Tejas Saubhage <tsaubhage0007@gmail.com>
Co-authored-by: pedrooot <pedromarting3@gmail.com>
This commit is contained in:
tejas_0007
2026-03-17 10:55:30 -04:00
committed by GitHub
parent b7571abaeb
commit cb03573599
3 changed files with 200 additions and 1 deletions

View File

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