Skip to content

Commit b7571ab

Browse files
authored
fix(dashboard): add RBI compliance dashboard support for Azure (#10360)
1 parent 4f93a89 commit b7571ab

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
import warnings
2+
3+
from dashboard.common_methods import get_section_containers_rbi
4+
5+
warnings.filterwarnings("ignore")
6+
7+
8+
def get_table(data):
9+
aux = data[
10+
[
11+
"REQUIREMENTS_ID",
12+
"REQUIREMENTS_DESCRIPTION",
13+
"CHECKID",
14+
"STATUS",
15+
"REGION",
16+
"ACCOUNTID",
17+
"RESOURCEID",
18+
]
19+
]
20+
return get_section_containers_rbi(aux, "REQUIREMENTS_ID")

prowler/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ All notable changes to the **Prowler SDK** are documented in this file.
2727
### 🐞 Fixed
2828

2929
- Route53 dangling IP check false positive when using `--region` flag [(#9952)](https://github.com/prowler-cloud/prowler/pull/9952)
30+
- RBI compliance framework support on Prowler Dashboard for the Azure provider [(#10360)](https://github.com/prowler-cloud/prowler/pull/10360)
3031

3132
---
3233

0 commit comments

Comments
 (0)