As an organization owner, set the organization name for VMware Aria Automation.

UI Procedure

  1. Log in to the VMware Aria Automation cloud services console at https://<aria_automation_cluster_fqdn>/csp/gateway/portal as configadmin in the system domain.
  2. In the top-right corner, click the logged-in user drop-down menu, and select View organization.
  3. In the Organization name panel, click Edit.
  4. In the Display name text box, enter a name for your organization and click Save.

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!"
    
    $displayName = "Rainpole"
    $configUser = "configadmin"
    $configPass = "VMw@re1!"
  3. Perform the configuration by running the command in the PowerShell console.

    Update-vRAOrganizationDisplayName -server $sddcManagerFqdn -user $sddcManagerUser -pass $sddcManagerPass -displayName $displayName -vraUser $configUser -vraPass $configPass