Configure the integration parameters from vRealize Automation to vRealize Operations Manager.

UI Procedure

  1. Log in to the vRealize Automation cloud services console at https://<vra_cluster_fqdn>/csp/gateway/portal with a user assigned the Cloud Assembly administrator service role.
  2. Under My services, click Cloud Assembly.
  3. Click the Infrastructure tab.
  4. In the left pane, select Connections > Integrations.
  5. On the Integrations page, click Add integration.
  6. On the Integration types page, select vRealize Operations Manager.
  7. On the New integration page, configure the settings according to your values in the VMware Cloud Foundation Planning and Preparation Workbook, and click Validate.
  8. In the Untrusted certificate dialog box, verify the certificate information and click Accept
  9. Click Add.

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!"
    
    $sddcDomainName = "sfo-w01"
    
    $vraUser = "configadmin"
    $vrPass = "VMw@re1!"
    $vropsIntegrationName = "vRealize Operations Manager"
    $vropsIntegrationUser= "svc-vra-vrops@sfo.rainpole.io@vIDMAuthSource"
    $vropsIntegrationPass = "VMw@re1!"
  3. Perform the configuration by running the command in the PowerShell console.

    New-vRAvROPSIntegrationItem -server $sddcManagerFqdn -user $sddcManagerUser -pass $sddcManagerPass -vraUser $vraUser -vraPass $vrPass -vropsIntegrationName $vropsIntegrationName -vropsIntegrationUser $vropsIntegrationUser   -vropsIntegrationPass $vropsIntegrationPass