Configure the integration parameters from VMware Aria Automation to VMware Aria Operations.

UI Procedure

  1. Log in to the VMware Aria Automation cloud services console at https://<aria_automation_cluster_fqdn>/csp/gateway/portal with a user assigned the Assembler administrator service role.
  2. Under My services, click Assembler.
  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 VMware Aria Operations card.

  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 found dialog box, verify the certificate information and click Accept.
  9. Click Add.

PowerShell Procedure

  1. Start 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 = "[email protected]"
    $sddcManagerPass = "VMw@re1!"
    
    $sddcDomainName = "sfo-w01"
    
    $configUser = "configadmin"
    $configPass = "VMw@re1!"
    $operationsIntegrationName = "VMware Aria Operations"
    $operationsIntegrationUser= "[email protected]@vIDMAuthSource"
    $operationsIntegrationPass = "VMw@re1!"
  3. Perform the configuration by running the command in the PowerShell console.

    New-vRAvROPSIntegrationItem -server $sddcManagerFqdn -user $sddcManagerUser -pass $sddcManagerPass -vraUser $configUser -vraPass $configPass -vropsIntegrationName $operationsIntegrationName -vropsIntegrationUser $operationsIntegrationUser   -vropsIntegrationPass $operationsIntegrationPass