This article is only applicable for VMware Tanzu customers who have Enterprise Identity Federation configured for VMware Tanzu Platform Console (https://console.tanzu.broadcom.com), and currently authenticate access to VMware Tanzu Platform Console and VMware Tanzu products listed in this article using their corporate credentials. No action is required for customers who currently authenticate access to these products using Broadcom Support Portal accounts.
On December 2, 2024, VMware Tanzu Platform Console will begin transitioning to use Symantec VIP Authentication Hub as the Enterprise Identity Federation Broker that brokers the connection between customers’ corporate identity platform (IdP) and VMware Tanzu Platform Console. Symantec VIP Authentication Hub will be prepopulated with the customers’ current IdP information and existing Users and Groups to facilitate this transition.
During the Transition Period starting December 2, 2024, VMware Tanzu Platform Console will support VMware Identity Broker (VIDB), which is the current Enterprise Identity Federation Broker, and Symantec VIP Authentication Hub to facilitate customers’ transition to the new Broker. During this period, it would be required for customers to take the following steps to transition to use Symantec VIP Authentication Hub.
If you encounter issues during the transition process and wish to contact the VMware Tanzu team, please visit Broadcom Support Portal and create a Support Ticket for VMware Tanzu Platform or any one of the VMware Tanzu products referenced in this article.
VMware Tanzu CSP managed services:
Determine if it is necessary to create a new SAML application for accessing VMware Tanzu Platform Console using the following criteria.
User Attributes |
||
Name |
Name Format |
Value |
|
Basic |
user email |
firstName |
Basic |
user first name |
lastName |
Basic |
user last name |
Group Attributes |
||
Name |
Name Format |
Value |
groups |
Unspecified |
{Their current groups} |
User Attributes |
||
Name |
Name Format |
Value |
|
Basic |
user email |
firstName |
Basic |
user first name |
lastName |
Basic |
user last name |
Group Attributes |
||
Name |
Name Format |
Value |
groups |
Unspecified |
{Their current groups} |
Note the first IdpRegistration in the response and its ID.
export IDP_REGISTRATION_ID=...
Check current IDP Registration of VMware Tanzu Platform Console. It should return VIDB URLs because the switch to Symantec VIP Authentication Hub has not been made.
$ curl --silent --location --request GET "$CSP_API_HOST/csp/gateway/am/api/idp-registrations/$IDP_REGISTRATION_ID/current" \
--header "Authorization: Bearer $BEARER_TOKEN" \
-H "Origin: $CSP_API_HOST"
NOTE: The expected result from this command is "primary
"
Change IDP Registration of VMware Tanzu Platform Console to Symantec VIP Authentication Hub using POST /am/api/idp registrations/{idpRegistrationId}/alternate/active
$ curl --silent --location --request POST "$CSP_API_HOST/csp/gateway/am/api/idp-registrations/$IDP_REGISTRATION_ID/alternate/active" \
--header "Authorization: Bearer $BEARER_TOKEN" \
-H 'Content-Type: application/json' \
-H "Origin: $CSP_API_HOST"
Confirm the current active IDP Registration is Symantec VIP Authentication Hub. using GET /am/api/idp-registrations/{idpRegistrationId}/current
$ curl --silent --location --request GET "$CSP_API_HOST/csp/gateway/am/api/idp-registrations/$IDP_REGISTRATION_ID/current" \
--header "Authorization: Bearer $BEARER_TOKEN" \
-H "Origin: $CSP_API_HOST"
NOTE: The expected result from this command is "alternate
"
Validate that you can successfully log in to VMware Tanzu Platform Console
If you have an active session using VMware Tanzu Platform Console, log out from that session.
Open an Incognito or Private browser window and navigate to https://console.tanzu.broadcom.com
Log in using your corporate credentials and validate whether you can successfully log in. If the log in failed, jump to Step 3.
If you have an active subscription and access to VMware Cloud Services Console, validate that you can successfully log in to VMware Cloud Services Console by navigating to https://console.cloud.vmware.com and log in to the service using your corporate credentials.
If you failed to log in at Step 4.VIII.C, revert IDP Registration back to VIDB (primary) to maintain user access to VMware Tanzu Platform Console while issues with switching to Symantec VIP Authentication Hub are being resolved.
$ curl --silent --location --request POST "$CSP_API_HOST/csp/gateway/am/api/idp-registrations/$IDP_REGISTRATION_ID/primary/active" \
--header "Authorization: Bearer $BEARER_TOKEN" \
-H 'Content-Type: application/json' \
-H "Origin: $CSP_API_HOST"