mirror of
https://github.com/prowler-cloud/prowler.git
synced 2026-03-22 03:08:23 +00:00
Co-authored-by: Tejas Saubhage <tsaubhage0007@gmail.com> Co-authored-by: pedrooot <pedromarting3@gmail.com>
21 lines
432 B
Python
21 lines
432 B
Python
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")
|