-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Subject: ResourceGroup and Resource scopes disappeared from azure_role_assignment #866
Comments
Hi @victordetoni , were those permission sets returned before? If so, do you recall around which version of the plugin you were seeing the correct results? Also, sometimes Azure returns inconsistent casing in their API response data, if you try a case insensitive match: select scope from azure_all.azure_role_assignment
where scope ilike '%resourcegroups%' -- testando com letra minúscula
or scope ilike '%ResourceGroups%'
or scope ilike '%resource%'; Do you see any of the expected scopes? |
Hi @cbruno10 thank you for your answer. I just tried your suggestion, but the problem persists:
I have owner and global administrator permissions and I have been running this select for a year and this problem starts now. |
… scope is not specified in the query Closes #866
Hi @victordetoni, Apologies for the issue you're facing. I have raised a PR to address it. Hopefully, this will resolve the issue. Thanks! |
Thank you @ParthaI How can I find out when I can update this to use? |
Hey @victordetoni, The PR is currently under review, and I don’t have an exact ETA for the next release. However, this fix will definitely be included in the upcoming release version. If you’d like to use the fix before the official release, you can build the plugin from the PR branch locally. Here’s how:
Thanks! |
Hi @ParthaI thank you! It worked! |
Hello,
I've identified an issue with the Azure role assignments query in Steampipe. The query is no longer returning permissions set at the Resource Groups or Resources level.
To reproduce the issue, I ran the following query to check for any scopes containing resource groups or resources:
Thanks
Victor
The text was updated successfully, but these errors were encountered: