From 568ed72b3e83502c6a582b5c95de2da0ac05e7cd Mon Sep 17 00:00:00 2001 From: Nacho Rivera Date: Wed, 29 Mar 2023 09:15:53 +0200 Subject: [PATCH] fix(audit_info): azure subscriptions parsing error (#2147) --- prowler/providers/common/audit_info.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prowler/providers/common/audit_info.py b/prowler/providers/common/audit_info.py index 149517fe..b0b86548 100644 --- a/prowler/providers/common/audit_info.py +++ b/prowler/providers/common/audit_info.py @@ -313,7 +313,7 @@ GCP Account: {Fore.YELLOW}[{profile}]{Style.RESET_ALL} GCP Project ID: {Fore.YE set_azure_audit_info returns the Azure_Audit_Info """ logger.info("Setting Azure session ...") - subscription_ids = arguments.get("subscriptions") + subscription_ids = arguments.get("subscription_ids") logger.info("Checking if any credentials mode is set ...") az_cli_auth = arguments.get("az_cli_auth")