ldap groups associated with project
I need to be able to create a list of which ldap groups are associated with each project. Is there an easy way to do this using the keystone api?
First time here? Check out the FAQ!
I need to be able to create a list of which ldap groups are associated with each project. Is there an easy way to do this using the keystone api?
Asked: 2019-11-05 16:17:02 -0600
Seen: 17 times
Last updated: Nov 05
You can list the users associated with a project (e.g.
openstack role assignment list --project PROJECT
; didn't check if that works), then derive the LDAP groups from that.I don't know if LDAP groups are related to OpenStack groups. If yes, list groups with
openstack group list --user USER
.