mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Merge pull request #24159 from rallytime/keystone_doc_examples
Fill out modules/keystone.py CLI Examples
This commit is contained in:
commit
4e8c5031b0
1 changed files with 9 additions and 3 deletions
|
@ -66,9 +66,13 @@ __opts__ = {}
|
|||
|
||||
def auth(profile=None, **connection_args):
|
||||
'''
|
||||
Set up keystone credentials
|
||||
Set up keystone credentials. Only intended to be used within Keystone-enabled modules.
|
||||
|
||||
Only intended to be used within Keystone-enabled modules
|
||||
CLI Example:
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
salt '*' keystone.auth
|
||||
'''
|
||||
|
||||
if profile:
|
||||
|
@ -322,7 +326,9 @@ def endpoint_delete(service, profile=None, **connection_args):
|
|||
|
||||
def role_create(name, profile=None, **connection_args):
|
||||
'''
|
||||
Create named role
|
||||
Create a named role.
|
||||
|
||||
CLI Example:
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue