You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As the title states, I can't seem to create a user in an identity zone when I use the java client and login with identity zone specific credentials. The request fails with bad credentials
Steps to reproduce:
Login in to UAA with UAA admin client creds
Create ID zone
Create admin client creds for that ID zone
Login in to UAA with identity zone client creds
Create users in the ID zone
Create groups in ID zone
I cannot get steps 4+ to work with the Java client. From my limited understanding and looking at the code/debugging/etc, login calls are directed to the endpoint specified in /v2/info (login.system.example.com). My zone credentials reside in a "zone bucket" which are not present in login.system.example.com so the error seems to make sense.
Using uaac, I can target my identity zone and create resource using my zone credentials.
Ex: uaac target <my-id-zone-subdomain>.login.system.example.com
I've attached a test case that captures the behavior.