Skip to content

Commit

Permalink
fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
k0ka committed Jan 18, 2024
1 parent 67a36de commit 3971434
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
10 changes: 10 additions & 0 deletions doc/services/identity/v3/application-credentials.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
Application Credentials
=======================

Application credentials provide a way to delegate a user’s authorization to an application without sharing the user’s
password authentication. This is a useful security measure, especially for situations where the user’s identification
is provided by an external source, such as LDAP or a single-sign-on service. Instead of storing user passwords in
config files, a user creates an application credential for a specific project, with all or a subset of the role assignments
they have on that project, and then stores the application credential identifier and secret in the config file.

See the `Official documentation <https://docs.openstack.org/keystone/latest/user/application_credentials.html>`_

You must :doc:`create the service <services/identity/v3/create>` first to use this resource.

Create
------

Expand Down
6 changes: 3 additions & 3 deletions doc/services/identity/v3/create.rst
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
Create Service
==============

Service can be created via ``identityV3()`` method of ``OpenStack`` object:
Service can be created via ``identityV3()`` method of the ``OpenStack`` object:

.. code-block:: php
$service = $openstack->identityV3();
$identity = $openstack->identityV3();
A list of additional options can be passed to the method. For example, to change the region:

.. code-block:: php
$service = $openstack->identityV3(['region' => '{region}']);
$identity = $openstack->identityV3(['region' => '{region}']);

0 comments on commit 3971434

Please sign in to comment.