Skip to content

Commit 5b7bce8

Browse files
committed
navigation
1 parent 9f48214 commit 5b7bce8

File tree

4 files changed

+21
-21
lines changed

4 files changed

+21
-21
lines changed

authentication/AzureAD/README_WITH_CLIENT_SECRET.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
1. Create the *ODM application*.
2828

29-
In **Azure Active Directory** / **App registration**, click **New Registration**:
29+
In **Microsoft Entra Id** / **Manage** / **App registration**, click **New Registration**:
3030

3131
* Name: **ODM Application**
3232
* Supported account types / Who can use this application or access this API?: select `Accounts in this organizational directory only (Default Directory only - Single tenant)`
@@ -36,7 +36,7 @@
3636

3737
2. Retrieve Tenant and Client information.
3838

39-
In **Azure Active Directory** / **App Registration**, select **ODM Application** and click **Overview**:
39+
In **Microsoft Entra Id** / **Manage** / **App Registration**, select **ODM Application** and click **Overview**:
4040

4141
* Application (client) ID: **Client ID**. It will be referenced as `CLIENT_ID` in the next steps.
4242
* Directory (tenant) ID: **Your Tenant ID**. It will be referenced as `TENANT_ID` in the next steps.
@@ -45,7 +45,7 @@
4545

4646
3. Generate an OpenID client secret.
4747

48-
In **Azure Active Directory** / **App registrations**, select **ODM Application**:
48+
In **Microsoft Entra Id** / **Manage** / **App registrations**, select **ODM Application**:
4949

5050
* From the Overview page, click on the link Client credentials: **Add a certificate or secret** or on the **Manage / Certificates & secrets** tab
5151
* Click + New Client Secret
@@ -58,7 +58,7 @@
5858
5959
4. Add Claims.
6060

61-
In **Azure Active Directory** / **App registrations**, select **ODM Application**, and in **Manage / Token Configuration**:
61+
In **Microsoft Entra Id** / **Manage** / **App registrations**, select **ODM Application**, and in **Manage / Token Configuration**:
6262

6363
* Add Optional Email ID Claim
6464
* Click +Add optional claim
@@ -85,7 +85,7 @@
8585

8686
To allow ODM rest-api to use the password flow with email as user identifier and the client-credentials flow with client_id as user identifier, we need to create a new claim named "identity" that will take the relevant value according to the flow:
8787

88-
In **Azure Active Directory** / **Enterprise applications**, select **ODM Application**, and in **Manage / Single sign-on**:
88+
In **Microsoft Entra Id** / **Manage** / **Enterprise applications**, select **ODM Application**, and in **Manage / Single sign-on**:
8989

9090
* Click Edit in the "Attributes & Claims" section
9191
* Click + Add new claim
@@ -97,7 +97,7 @@
9797

9898
6. API Permissions.
9999

100-
In **Azure Active Directory** / **App Registration**, select **ODM Application**, and then click **API Permissions**.
100+
In **Microsoft Entra Id** / **Manage** / **App Registration**, select **ODM Application**, and then click **API Permissions**.
101101

102102
* Click Grant Admin Consent for Default Directory
103103

@@ -109,7 +109,7 @@
109109

110110
7. Manifest change.
111111

112-
In **Azure Active Directory** / **App Registration**, select **ODM Application**, and then click **Manifest**.
112+
In **Microsoft Entra Id** / **Manage** / **App Registration**, select **ODM Application**, and then click **Manifest**.
113113

114114
As explained in [accessTokenAcceptedVersion attribute explanation](https://docs.microsoft.com/en-us/azure/active-directory/develop/reference-app-manifest#accesstokenacceptedversion-attribute), change the value to 2.
115115

@@ -449,7 +449,7 @@ You can now install the product. We will use the PostgreSQL internal database an
449449
- Decision Server Runtime redirect URI: `https://<INGRESS_ADDRESS>/DecisionService/openid/redirect/odm`
450450
- Rule Designer redirect URI: `https://127.0.0.1:9081/oidcCallback`
451451
452-
From the Azure console, in **Azure Active Directory** / **App Registrations** / **ODM Application**:
452+
From the Microsoft Azure console, in **Microsoft Entra Id** / **Manage** / **App Registrations** / **ODM Application**:
453453
454454
- Click the `Add a Redirect URI` link
455455
- Click `Add Platform`
@@ -507,11 +507,11 @@ To manage ODM runtime call on the next steps, we used the [Loan Validation Decis
507507

508508
Import the **Loan Validation Service** in Decision Center connected using *myodmuser*@YOURDOMAIN created at step 2
509509

510-
![Import project](../Keycloak/images/import_project.png)
510+
![Import project](images/import_project.png)
511511

512512
Deploy the **Loan Validation Service** production_deployment ruleapps using the **production deployment** deployment configuration in the Deployments>Configurations tab.
513513

514-
![Deploy project](../Keycloak/images/deploy_project.png)
514+
![Deploy project](images/deploy_project.png)
515515

516516
You can retrieve the payload.json from the ODM Decision Server Console or use [the provided payload](payload.json).
517517

authentication/AzureAD/README_WITH_PRIVATE_KEY_JWT.md

+11-11
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ For additional information regarding the implement in Liberty, please refer to t
3232

3333
1. Create the *ODM application*.
3434

35-
In **Identity** / **Applications** / **App registration**, click **New Registration**:
35+
In **Microsoft Entra Id** / **Manage** / **App registration**, click **New Registration**:
3636

3737
* Name: **ODM Application**
3838
* Supported account types / Who can use this application or access this API?: select `Accounts in this organizational directory only (Default Directory only - Single tenant)`
@@ -42,7 +42,7 @@ For additional information regarding the implement in Liberty, please refer to t
4242

4343
2. Retrieve Tenant and Client information.
4444

45-
In **Identity** / **Applications** / **App Registration**, select **ODM Application** and click **Overview**:
45+
In **Microsoft Entra Id** / **Manage** / **App Registration**, select **ODM Application** and click **Overview**:
4646

4747
* Application (client) ID: **Client ID**. It will be referenced as `CLIENT_ID` in the next steps.
4848
* Directory (tenant) ID: **Your Tenant ID**. It will be referenced as `TENANT_ID` in the next steps.
@@ -62,7 +62,7 @@ For additional information regarding the implement in Liberty, please refer to t
6262
-addext "subjectAltName = DNS:myodmcompany.com"
6363
```
6464

65-
In **Identity** / **Applications** / **App registrations**, select **ODM Application**:
65+
In **Microsoft Entra Id** / **Manage** / **App registrations**, select **ODM Application**:
6666

6767
* From the Overview page, click on the link Client credentials: **Add a certificate or secret** or on the **Manage / Certificates & secrets** tab
6868
* Select the **Certificates** tab
@@ -73,7 +73,7 @@ For additional information regarding the implement in Liberty, please refer to t
7373

7474
4. Add Claims.
7575

76-
In **Identity** / **Applications** / **App registrations**, select **ODM Application**, and in **Manage / Token Configuration**:
76+
In **Microsoft Entra Id** / **Manage** / **App registrations**, select **ODM Application**, and in **Manage / Token Configuration**:
7777

7878
* Add Optional Email ID Claim
7979
* Click **+ Add optional claim**
@@ -99,7 +99,7 @@ For additional information regarding the implement in Liberty, please refer to t
9999
5. Create a custom claim named "identity"
100100

101101
To enable the ODM REST API to use both the 'Password Credentials' flow with email as the user identifier and the 'Client Credentials' flow with client_id as the user identifier, we must establish a new claim named "identity" that will dynamically capture the appropriate value based on the chosen flow:
102-
In **Identity** / **Applications** / **Enterprise applications**, select **ODM Application**, and in **Manage / Single sign-on**:
102+
In **Microsoft Entra Id** / **Manage** / **Enterprise applications**, select **ODM Application**, and in **Manage / Single sign-on**:
103103

104104
* Click on Edit of the "Attributes & Claims" section
105105
* Click **+ Add new claim**
@@ -110,13 +110,13 @@ For additional information regarding the implement in Liberty, please refer to t
110110

111111
6. API Permissions.
112112

113-
In **Identity** / **Applications** / **App Registration**, select **ODM Application**, and then click **API Permissions**.
113+
In **Microsoft Entra Id** / **Manage** / **App Registration**, select **ODM Application**, and then click **API Permissions**.
114114

115115
* Click **Grant Admin Consent for <Directory name>**
116116

117117
7. Manifest change.
118118

119-
In **Identity** / **Applications** / **App Registration**, select **ODM Application**, and then click **Manifest**.
119+
In **Microsoft Entra Id** / **Manage** / **App Registration**, select **ODM Application**, and then click **Manifest**.
120120

121121
As explained in [accessTokenAcceptedVersion attribute explanation](https://docs.microsoft.com/en-us/azure/active-directory/develop/reference-app-manifest#accesstokenacceptedversion-attribute), change the value of **accessTokenAcceptedVersion** to `2`.
122122

@@ -334,7 +334,7 @@ You can now install the product. We will use the PostgreSQL internal database an
334334
- Decision Server Console redirect URI: `https://<INGRESS_ADDRESS>/res/openid/redirect/odm`
335335
- Decision Server Runtime redirect URI: `https://<INGRESS_ADDRESS>/DecisionService/openid/redirect/odm`
336336
337-
From the Azure console, in **Identity** / **Applications** / **App Registrations** / **ODM Application**:
337+
From the Azure console, in **Microsoft Entra Id** / **Manage** / **App Registrations** / **ODM Application**:
338338
339339
- Click`Add Redirect URIs link`
340340
- Click `Add Platform`
@@ -352,7 +352,7 @@ You can now install the product. We will use the PostgreSQL internal database an
352352

353353
The ODM Rule Designer will use the [PKCE authorization code flow](https://oauth.net/2/pkce/) to connect to Decision Center and Decision Server Console.
354354

355-
From the Azure console, in **Identity** / **Applications** / **App Registrations** / **ODM Application**:
355+
From the Azure console, in **Microsoft Entra Id** / **Manage** / **App Registrations** / **ODM Application**:
356356

357357
- Click`Add Redirect URIs link`
358358
- Click `Add Platform`
@@ -406,11 +406,11 @@ To manage ODM runtime call on the next steps, we used the [Loan Validation Decis
406406

407407
Import the **Loan Validation Service** in Decision Center connected using *myodmuser*@YOURDOMAIN created at step 2
408408

409-
![Import project](../Keycloak/images/import_project.png)
409+
![Import project](images/import_project.png)
410410

411411
Deploy the **Loan Validation Service** production_deployment ruleapps using the **production deployment** deployment configuration in the Deployments>Configurations tab.
412412

413-
![Deploy project](../Keycloak/images/deploy_project.png)
413+
![Deploy project](images/deploy_project.png)
414414

415415
You can retrieve the payload.json from the ODM Decision Server Console or use [the provided payload](payload.json).
416416

Loading
Loading

0 commit comments

Comments
 (0)