mirror of
https://github.com/prowler-cloud/prowler.git
synced 2026-07-04 19:21:51 +00:00
28 lines
590 B
Python
28 lines
590 B
Python
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",
|
|
)
|