Reputation: 2709
Recently, I study Openstack Keystone. When I do
keystone role-list
I found three roles . They are
+----------------------------------+---------------+
| id | name |
+----------------------------------+---------------+
| cb362e8e96464f9980c232dfd56d2ff5 | Member |
| d4218b8761844a70ab4fab54cc3afaf9 | ResellerAdmin |
| 9fe2ff9ee4384b1894a90878d3e92bab | _member_ |
| 70340c7de4024ffbbbdd15ae9ebbbe83 | admin |
+----------------------------------+---------------+
I know the "admin role" is the highest role. But I don't know what the differences between "Member" ,"member" and "ResellerAdmin". Could someone help me ??Thanks a lot !
Upvotes: 2
Views: 6115
Reputation: 390
_ member_
is the default role that is assigned to users when they are created. The other roles listed above seem to be from your devstack instance. Basically, we just have 2 default openstack roles that gets configured: admin
and _ member_
. To distinguish member
and Member
in your instance, try https://ask.openstack.org/en/question/4759/member-vs-member/ .
Upvotes: 2
Reputation: 6040
Here are a few references that could answer your question:
ResellerAdmin and admin: https://github.com/openstack-dev/devstack/blob/master/files/keystone_data.sh#L44-L50
Upvotes: 2