VMware Cloud Community
stjeanl1
Enthusiast
Enthusiast

Rename local tenant user in vRA 7.01

Hello,

Is there a way to edit a local tenant user's information? I cannot seem to find a way from the web console.

Using vRA 7.01.

Thanks,

Luc

pastedImage_0.png

0 Kudos
1 Reply
GrantOrchardVMw
Commander
Commander

By API only for now... this is coming in the UI shortly.

PUT: https://{{vra-fqdn}}/identity/api/tenants/{{tenant}}/principals/administrator@vsphere.local

BODY:

{

"firstName": "hznAdminFirstName",

"lastName": "hznAdminLastName",

"emailAddress": "administrator@vra-01a.corp.local",

"locked": false,

"disabled": false,

"password": null,

"principalId": {

"domain": "vsphere.local",

"name": "administrator"

},

"tenantName": "vsphere.local",

"name": "hznAdminFirstName hznAdminLastName"

}

Update the values as required.

Grant http://grantorchard.com
0 Kudos