Configure the integration parameters from vRealize Automation to vRealize Operations Manager.
UI Procedure
- 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.
- Under My services, click Cloud Assembly.
- Click the Infrastructure tab.
- In the left pane, select .
- On the Integrations page, click Add integration.
- On the Integration types page, select vRealize Operations Manager.
- On the New integration page, configure the settings according to your values in the VMware Cloud Foundation Planning and Preparation Workbook, and click Validate.
- In the Untrusted certificate dialog box, verify the certificate information and click Accept.
- Click Add.
PowerShell Procedure
-
Start Windows PowerShell.
-
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!"
-
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