SDDC Manager configures the credentials and endpoint for the vRealize Automation integration in vRealize Operations Manager with the clustered Workspace ONE Access local administrator account. To monitor the health and the resource capacity in the SDDC, reconfigure the vRealize Automation adapter to use the service account.

UI Procedure

  1. Log in to the vRealize Operations Manager operations interface at https://<vrealize_operations_manager_fqdn> with a user assigned the Administrator role.
  2. In the left pane, click Administration.
  3. In the left pane, select Management > Integrations.
  4. On the Integrations page, click the vertical ellipsis for vRealize Automation 8.x and select Edit.
  5. Reconfigure the credentials for the vRealize Automation adapter.
    1. Next to the Credential text box, click the Add new icon, configure the settings according to your values in the VMware Cloud Foundation Planning and Preparation Workbook, and click OK.
    2. Click Validate connection.
    3. In the Review and accept certificate dialog box, verify the certificate information, and click Accept
    4. In the Info dialog box, click OK.
  6. Click Save.
  7. On the Integrations page, verify that the collection status of the VMware vRealize Automation 8.x adapter is OK

PowerShell Procedure

  1. Start Windows PowerShell.

  2. Replace the values in the sample code with values from your VMware Cloud Foundation Planning and Preparation Workbook and run the commands in the PowerShell console.

    $sddcManagerFqdn = "sfo-vcf01.sfo.rainpole.io"
    $sddcManagerUser = "administrator@vsphere.local"
    $sddcManagerPass = "VMw@re1!"
    
    $credentialDisplayName= "vRealize Automation Credentials"
    $credentialUserName ="svc-vrops-vra@sfo.rainpole.io"
    $credentialPassword = "VMw@re1!"
  3. Perform the configuration by running the command in the PowerShell console.

    Update-vROPSvRAAdapterCredential -server $sddcManagerFqdn -user $sddcManagerUser -pass $sddcManagerPass -credential_displayname $credentialDisplayName  -credential_username $credentialUserName -credential_password $credentialPassword -adapterKind CASAdapter