Skip to content
Merged
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
2 changes: 1 addition & 1 deletion managedApplication/Cleanup.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Catalog. This document will explain how to remove them all.

We need to ensure the [variables](Environment.md) are set up correctly.

## Azure Active Directory
## Microsoft Entra ID

``` bash
MOODLE_MANAGED_APP_AD_ID=$(az ad group list --filter="displayName eq '$MOODLE_MANAGED_APP_OWNER_GROUP_NAME'" --query [0].objectId --output tsv)
Expand Down
11 changes: 5 additions & 6 deletions managedApplication/PublishMoodleManagedApplication.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,18 +40,17 @@ Applications.
See [Create UI Definition
documentation](https://docs.microsoft.com/en-us/azure/managed-applications/create-uidefinition-overview) for more information.

## Create an Azure Active Directory User Group or Application
## Create an Microsoft Entra ID User Group or Application

You will need to create one ore more user group or appliction in Azure
Active Directory to allow you to manage the applications resources on
You will need to create one ore more user group or appliction in
Microsoft Entra ID to allow you to manage the applications resources on
behalf of your customer. These groups or application can be given any
built-in Role-Based Access Control (RBAC) role, such as 'Owner' or
'Contributor'. By creating more than one such group or application you
can configure access to your customers resources based on the specific
needs of each role in your organization.

Azure has full documentation on [creating a group in Azure Active
Directory](https://docs.microsoft.com/en-us/azure/active-directory/active-directory-groups-create-azure-portal). The commands below will create a single 'owner' role for
Azure has full documentation on [creating a group in Microsoft Entra ID](https://learn.microsoft.com/en-us/entra/fundamentals/how-to-manage-groups). The commands below will create a single 'owner' role for
use in the examples below.

If the Group already exists we don't want to create a new one, so we
Expand Down Expand Up @@ -80,7 +79,7 @@ the built-in 'Owner' role:
MOODLE_MANAGED_APP_ROLE_ID=$(az role definition list --name Owner --query [].name --output tsv)
```

The Azure documentation has more information on how to work with [Azure Active Directory](https://docs.microsoft.com/en-us/azure/active-directory/manage-access-to-azure-resources).
The Azure documentation has more information on how to work with [Microsoft Entra ID](https://learn.microsoft.com/en-us/azure/role-based-access-control/).

## Create a Resource Group for the Managed Application Service Catalog Entry

Expand Down