To ensure that enterprise users log in with required role-based access controls, you configure the enterprise identity source user groups that are synchronized in the clustered Workspace ONE Access deployment for vRealize Operations Manager.
You assign the Administrator, ContentAdmin, and ReadOnly roles to the corresponding Active Directory user groups according to your values in the VMware Cloud Foundation Planning and Preparation Workbook.
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 Access control.
Click the User groups tab and, from the ellipsis drop-down menu, select Import from source.
In the Import user groups dialog box, from the Import from drop-down menu, select the vIDMAuthSource - VMware Identity Manager instance as an authentication source.
In the Domain name text box, enter the domain name.
In the Search prefix text box, enter the name of the Active Directory group for the Administrator role according to your values in the VMware Cloud Foundation Planning and Preparation Workbook and click Search.
Select the group and click Next.
On the Roles and objects page, configure these settings and click Finish.
Setting
Value
Select role
Administrator
Assign this role to the group
Selected
Allow access to all objects in the system
Selected
To allow access to all objects in the system, in the confirmation dialog box, click Yes.
Repeat this procedure for the ContentAdmin and the ReadOnly roles.
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!" $domain = "sfo.rainpole.io" $vropsAdminGroup = "gg-vrops-admins" $vropsContentAdminGroup = "gg-vrops-content-admins" $vropsReadOnlyGroup = "gg-vrops-read-only"
Perform the configuration by running the command in the PowerShell console.
Import-vROPSUserGroup -server $sddcManagerFqdn -user $sddcManagerUser -pass $sddcManagerPass -domain $domain -groupName $vropsAdminGroup -role Administrator Import-vROPSUserGroup -server $sddcManagerFqdn -user $sddcManagerUser -pass $sddcManagerPass -domain $domain -groupName $vropsContentAdminGroup -role ContentAdmin Import-vROPSUserGroup -server $sddcManagerFqdn -user $sddcManagerUser -pass $sddcManagerPass -domain $domain -groupName $vropsReadOnlyGroup -role ReadOnly