Updated Azure Active Directory to Entra ID

Microsoft have renamed Azure Active Directory to Entra ID.  https://learn.microsoft.com/en-us/azure/active-directory/fundamentals/new-name .  This PR updates references to AAD to refer to Entra ID.

* On each documentation page, I include `formerly Azure Active Directory` in the first non heading reference to Entra ID.  This will help anyone unfaimiliar withthe  name change, and will also mean the page continues to show up in search results if people search for the old name.
* I didn't correct references in file names, as this would cause broken links.  If we have a way of redirecting those to new urls I can look at doign that, but if not, I think it's better to leave existing links working.
* There were a few references to AAD in release notes for older versions - I left these alone as the product naming was correct at the time of the release notes.
* LDAP provider still has references to "Active Directory" as these reference to the on premise Active Directory, not Azure Active Directory

Signed-off-by: Alex Crome <afscrome@users.noreply.github.com>
This commit is contained in:
Alex Crome
2023-10-19 21:24:47 +01:00
parent bae9015f2b
commit 243c655a68
12 changed files with 37 additions and 29 deletions
+1 -1
View File
@@ -89,6 +89,6 @@ The `credentials` element is a structure with these elements:
> Note:
>
> - You cannot use a service principal or managed identity for Azure DevOps Server (on-premises) organizations
> - You can only use a service principal or managed identity for Azure AD backed Azure DevOps organizations
> - You can only use a service principal or managed identity for Microsoft Entra ID (formerly Azure Active Directory) backed Azure DevOps organizations
> - You can only specify one credential per host without any organizations specified
> - The personal access token should just be provided as the raw token generated by Azure DevOps using the format `raw_token` with no base64 encoding. Formatting and base64'ing is handled by dependent libraries handling the Azure DevOps API
+5 -5
View File
@@ -1,13 +1,13 @@
---
id: org
title: Microsoft Azure Active Directory Organizational Data
title: Microsoft Entra tenantal Data
sidebar_label: Org Data
# prettier-ignore
description: Importing users and groups from Microsoft Azure Active Directory into Backstage
description: Importing users and groups from Microsoft Entra ID into Backstage
---
The Backstage catalog can be set up to ingest organizational data - users and
teams - directly from a tenant in Microsoft Azure Active Directory via the
teams - directly from a tenant in Microsoft Entra ID via the
Microsoft Graph API.
## Installation
@@ -205,7 +205,7 @@ export async function myGroupTransformer(
annotations: {},
},
spec: {
type: 'aad',
type: 'Microsoft Entra ID',
children: [],
},
};
@@ -219,7 +219,7 @@ export async function myUserTransformer(
const backstageUser = await defaultUserTransformer(graphUser, userPhoto);
if (backstageUser) {
backstageUser.metadata.description = 'Loaded from Azure Active Directory';
backstageUser.metadata.description = 'Loaded from Microsoft Entra ID';
}
return backstageUser;