nova/api-guide/source/users.rst
Takashi NATSUME ddf7c6e370 Improve formats of the Compute API guide
Replace the 'NOTE' and 'TODO' words with
the note and todo directives in the Compute API guide.

Improve some format in the guide.
e.g. Fix unnecessary bold characters.

Change-Id: I7e9d6b8a5228886fd5de03d12482481d2b652666
Closes-Bug: #1558459
2018-11-07 04:01:40 +00:00

2.4 KiB

Users

The Compute API includes all end user and administrator API calls.

Role based access control

Keystone middleware is used to authenticate users and identify their roles.

The Compute API uses these roles, along with oslo.policy, to decide what the user is authorized to do.

link to compute admin guide for details.

Personas used in this guide

While the policy can be configured in many ways, to make it easy to understand the most common use cases the API have been designed for, we should standardize on the following types of user:

  • application deployer: creates/deletes servers, directly or indirectly via API
  • application developer: creates images and applications that run on the cloud
  • cloud administrator: deploys, operates and maintains the cloud

Now in reality the picture is much more complex. Specifically, there are likely to be different roles for observer, creator and administrator roles for the application developer. Similarly, there are likely to be various levels of cloud administrator permissions, such as a read-only role that is able to view a lists of servers for a specific tenant but is not able to perform any actions on any of them.

Note

This is not attempting to be an exhaustive set of personas that consider various facets of the different users but instead aims to be a minimal set of users such that we use a consistent terminology throughout this document.

could assign names to these users, or similar, to make it more "real".

Discovering Policy

An API to discover what actions you are authorized to perform is still a work in progress. Currently this reported by a HTTP 403 error.

link to the doc on errors.