Skip to content

Commit

Permalink
fix(aws): add missing region to Backup Recovery Point (#6275)
Browse files Browse the repository at this point in the history
Co-authored-by: Sergio Garcia <[email protected]>
  • Loading branch information
prowler-bot and MrCloudSec authored Dec 19, 2024
1 parent 8782cd0 commit 17e1472
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions prowler/providers/aws/services/backup/backup_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,7 @@ def _list_recovery_points(self, regional_client):
"IsEncrypted", False
),
backup_vault_region=backup_vault.region,
region=regional_client.region,
tags=[],
)
)
Expand Down Expand Up @@ -251,6 +252,7 @@ class BackupReportPlan(BaseModel):
class RecoveryPoint(BaseModel):
arn: str
id: str
region: str
backup_vault_name: str
encrypted: bool
backup_vault_region: str
Expand Down

0 comments on commit 17e1472

Please sign in to comment.