-
Notifications
You must be signed in to change notification settings - Fork 362
Added minimal permission for 'entra group' commands #6996
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
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR adds minimal permission requirements documentation to the entra group
command reference pages. The changes provide clear guidance on the Microsoft Graph permissions needed for both delegated and application authentication scenarios.
- Added standardized permissions tables to five entra group command documentation files
- Specified
Group.Read.All
for read operations (get, list) andGroup.ReadWrite.All
for write operations (add, set, remove) - Implemented consistent formatting using Docusaurus tabs for delegated vs application permissions
Reviewed Changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated no comments.
Show a summary per file
File | Description |
---|---|
docs/docs/cmd/entra/group/group-add.mdx | Added permissions section requiring Group.ReadWrite.All for creating groups |
docs/docs/cmd/entra/group/group-get.mdx | Added permissions section requiring Group.Read.All for retrieving group information |
docs/docs/cmd/entra/group/group-list.mdx | Added permissions section requiring Group.Read.All for listing groups |
docs/docs/cmd/entra/group/group-remove.mdx | Added permissions section requiring Group.ReadWrite.All for deleting groups |
docs/docs/cmd/entra/group/group-set.mdx | Added permissions section requiring Group.ReadWrite.All for updating groups |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for the contribution @nanddeepn 🚀
Only a few minor notes, great job otherwise.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great work. Approved.
I will merge it later.
Added minimal permission for
entra group
commands. Closes #6935