fix(dashboard): add RBI compliance dashboard support for Azure (#10360)

This commit is contained in:
Pedro Martín
2026-03-17 15:42:39 +01:00
committed by GitHub
parent 4f93a89d1b
commit b7571abaeb
2 changed files with 21 additions and 0 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")

View File

@@ -27,6 +27,7 @@ All notable changes to the **Prowler SDK** are documented in this file.
### 🐞 Fixed
- Route53 dangling IP check false positive when using `--region` flag [(#9952)](https://github.com/prowler-cloud/prowler/pull/9952)
- RBI compliance framework support on Prowler Dashboard for the Azure provider [(#10360)](https://github.com/prowler-cloud/prowler/pull/10360)
---