The tenants, users and roles that have been created above can be listed by following commands:
List Tenants:
keystone tenant-list +----------------------------------+--------------------+---------+ | id | name | enabled | +----------------------------------+--------------------+---------+ | 7f95ae9617cd496888bc412efdceabfd | admin | True | | c7970080576646c6959ee35970cf3199 | service | True | +----------------------------------+--------------------+---------+
List Users:
keystone user-list +----------------------------------+---------+-------------------+--------+ | id | enabled | email | name | +----------------------------------+---------+-------------------+--------+ | 1b986cca67e242f38cd6aa4bdec587ca | True | swift@foobar.com | swift | | 518b51ea133c4facadae42c328d6b77b | True | glance@foobar.com | glance | | b3de3aeec2544f0f90b9cbfe8b8b7acd | True | admin@foobar.com | admin | | ce8cd56ca8824f5d845ba6ed015e9494 | True | nova@foobar.com | nova | +----------------------------------+---------+-------------------+--------+
List Roles:
keystone role-list +----------------------------------+----------------------+ | id | name | +----------------------------------+----------------------+ | 2bbe305ad531434991d4281aaaebb700 | admin | | d983800dd6d54ee3a1b1eb9f2ae3291f | Member | +----------------------------------+----------------------+
Please note that the values of the 'id' column, would be required later when we associate a role to a user in a particular tenant.
