Set the currency unit that is used for all cost calculations in vRealize Operations Manager.
UI Procedure
- Log in to the vRealize Operations Manager operations interface at https://<vrealize_operations_manager_fqdn> with a user assigned the Administrator role.
- In the left pane, click Administration.
On the Administration page, click Global settings.
In the left pane, click Cost/Price.
Locate the Currency setting and click Set currency.
In the Set currency dialog box, select the target currency according to your value in the VMware Cloud Foundation Planning and Preparation Workbook.
At the bottom of the Set currency dialog box, select the I understand that once my currency is set it can NOT be changed again for this installation check box and click Set currency.
In the Info dialog box, click OK.
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!" $currency = "USD"
Perform the configuration by running the command in the PowerShell console.
Add-vROPSCurrency -server $sddcManagerFqdn -user $sddcManagerUser -pass $sddcManagerPass -currency $currency