mirror of
https://github.com/prowler-cloud/prowler.git
synced 2025-12-19 05:17:47 +00:00
22 lines
434 B
Python
22 lines
434 B
Python
import warnings
|
|
|
|
from dashboard.common_methods import get_section_containers_format4
|
|
|
|
warnings.filterwarnings("ignore")
|
|
|
|
|
|
def get_table(data):
|
|
aux = data[
|
|
[
|
|
"REQUIREMENTS_ID",
|
|
"REQUIREMENTS_NAME",
|
|
"CHECKID",
|
|
"STATUS",
|
|
"REGION",
|
|
"ACCOUNTID",
|
|
"RESOURCEID",
|
|
]
|
|
]
|
|
|
|
return get_section_containers_format4(aux, "REQUIREMENTS_ID")
|