You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/spring-apps/how-to-configure-enterprise-spring-cloud-gateway.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,7 @@ VMware Spring Cloud Gateway includes the following features:
31
31
- Circuit breaker configuration.
32
32
- Support for accessing application services via HTTP Basic Authentication credentials.
33
33
34
-
To integrate with the API portal, VMware Spring Cloud Gateway automatically generates OpenAPI version 3 documentation after any route configuration additions or changes. For more information, see [API portal for VMware Tanzu®](./how-to-use-enterprise-api-portal.md).
34
+
To integrate with API portal for VMware Tanzu, VMware Spring Cloud Gateway automatically generates OpenAPI version 3 documentation after any route configuration additions or changes. For more information, see [API portal for VMware Tanzu®](./how-to-use-enterprise-api-portal.md).
35
35
36
36
## Prerequisites
37
37
@@ -105,7 +105,7 @@ VMware Spring Cloud Gateway supports authentication and authorization using sing
105
105
|`clientSecret`| Yes | The OpenID Connect client secret provided by your identity provider. |
106
106
|`scope`| Yes | A list of scopes to include in JWT identity tokens. This list should be based on the scopes allowed by your identity provider. |
107
107
108
-
To set up SSO with Azure AD, see [How to set up single sign-on with Azure Active Directory for Spring Cloud Gateway and API Portal](./how-to-set-up-sso-with-azure-ad.md).
108
+
To set up SSO with Azure AD, see [How to set up single sign-on with Azure Active Directory for Spring Cloud Gateway and API portal](./how-to-set-up-sso-with-azure-ad.md).
109
109
110
110
Use the following command to configure SSO properties for VMware Spring Cloud Gateway.
@@ -36,7 +36,7 @@ To configure single sign-on for the application, you'll need to prepare credenti
36
36
37
37
Follow these steps to configure single sign-on using an existing Identity Provider. If you're provisioning an Azure Active Directory App Registration, skip ahead to the following section, [Create and configure an application registration with Azure Active Directory](#create-and-configure-an-application-registration-with-azure-active-directory).
38
38
39
-
1. Configure your existing identity provider to allow redirects back to Spring Cloud Gateway and API Portal. Spring Cloud Gateway has a single URI to allow re-entry to the gateway. API Portal has two URIs for supporting the user interface and underlying API. The following commands retrieve these URIs that you will add to your single sign-on provider's configuration.
39
+
1. Configure your existing identity provider to allow redirects back to Spring Cloud Gateway for VMware Tanzu and API portal for VMware Tanzu. Spring Cloud Gateway has a single URI to allow re-entry to the gateway. API portal has two URIs for supporting the user interface and underlying API. The following commands retrieve these URIs that you will add to your single sign-on provider's configuration.
40
40
41
41
```azurecli
42
42
GATEWAY_URL=$(az spring gateway show \
@@ -84,7 +84,7 @@ To register the application with Azure Active Directory, follow these steps. If
84
84
az ad sp create --id ${APPLICATION_ID}
85
85
```
86
86
87
-
1. Use the following commands to retrieve the URLs for Spring Cloud Gateway and API Portal, and add the necessary Reply URLs to the Active Directory App Registration.
87
+
1. Use the following commands to retrieve the URLs for Spring Cloud Gateway and API portal, and add the necessary Reply URLs to the Active Directory App Registration.
88
88
89
89
```azurecli
90
90
APPLICATION_ID=$(cat ad.json | jq -r '.appId')
@@ -237,9 +237,9 @@ You can configure Spring Cloud Gateway to authenticate requests using single sig
237
237
238
238
You can open the output URL in a browser to explore the updated application. The Log In function is now operational, allowing you to add items to the cart and place orders. After you sign in, the customer information button will display the signed-in username.
239
239
240
-
## Configure single sign-on for API Portal
240
+
## Configure single sign-on for API portal
241
241
242
-
You can configure API Portal to use single sign-on to require authentication before exploring APIs. Use the following commands to configure single sign-on for API Portal.
242
+
You can configure API portal for VMware Tanzu to use single sign-on to require authentication before exploring APIs. Use the following commands to configure single sign-on for API portal.
243
243
244
244
```azurecli
245
245
PORTAL_URL=$(az spring api-portal show \
@@ -255,7 +255,7 @@ az spring api-portal update \
255
255
--issuer-uri <issuer-uri>
256
256
```
257
257
258
-
Use the following commands to retrieve the URL for API Portal.
258
+
Use the following commands to retrieve the URL for API portal.
0 commit comments