Skip to content
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

Issue #945: Adjust text of the edge AZAddSecret to consider App Instance Property Lock #946

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,11 @@ const General: FC = () => {
</Typography>
<Typography variant='body2'>
When a principal has been granted "Cloud App Admin" or "App Admin" against the tenant, that principal
gains the ability to add new secrets to all Service Principals and App Registrations. Additionally, a
gains the ability to add new secrets to all Service Principals* and App Registrations. Additionally, a
principal that has been granted "Cloud App Admin" or "App Admin" against, or explicit ownership of a
Service Principal or App Registration gains the ability to add secrets to that particular object.
Service Principal* or App Registration gains the ability to add secrets to that particular object.

* Secrets can only be added to the Service Principal if it is not protected by the "App instance property lock" configuration in the corresponding App Registration.
</Typography>
</>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,12 @@ const References: FC = () => {
href='https://docs.microsoft.com/en-us/azure/active-directory/roles/assign-roles-different-scopes'>
Assign Azure AD roles at different scopes
</Link>
<Link
target='_blank'
rel='noopener'
href='https://learn.microsoft.com/en-us/entra/identity-platform/howto-configure-app-instance-property-locks'>
Protect Service Principals using App Instance Property Lock
</Link>
</Box>
);
};
Expand Down
Loading