Skip to content

Commit 17e1472

Browse files
fix(aws): add missing region to Backup Recovery Point (#6275)
Co-authored-by: Sergio Garcia <[email protected]>
1 parent 8782cd0 commit 17e1472

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

prowler/providers/aws/services/backup/backup_service.py

+2
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,7 @@ def _list_recovery_points(self, regional_client):
204204
"IsEncrypted", False
205205
),
206206
backup_vault_region=backup_vault.region,
207+
region=regional_client.region,
207208
tags=[],
208209
)
209210
)
@@ -251,6 +252,7 @@ class BackupReportPlan(BaseModel):
251252
class RecoveryPoint(BaseModel):
252253
arn: str
253254
id: str
255+
region: str
254256
backup_vault_name: str
255257
encrypted: bool
256258
backup_vault_region: str

0 commit comments

Comments
 (0)