mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
cloud: ovirt: add requirments to ovirt_auth module (#21460)
This commit is contained in:
parent
5e28d3a15c
commit
34da024e06
1 changed files with 6 additions and 0 deletions
|
@ -83,10 +83,16 @@ options:
|
||||||
description:
|
description:
|
||||||
- "A boolean flag indicating if Kerberos authentication
|
- "A boolean flag indicating if Kerberos authentication
|
||||||
should be used instead of the default basic authentication."
|
should be used instead of the default basic authentication."
|
||||||
|
requirements:
|
||||||
|
- python >= 2.7
|
||||||
|
- ovirt-engine-sdk-python >= 4.0.0
|
||||||
notes:
|
notes:
|
||||||
- "Everytime you use ovirt_auth module to obtain ticket, you need to also revoke the ticket,
|
- "Everytime you use ovirt_auth module to obtain ticket, you need to also revoke the ticket,
|
||||||
when you no longer need it, otherwise the ticket would be revoked by engine when it expires.
|
when you no longer need it, otherwise the ticket would be revoked by engine when it expires.
|
||||||
For an example of how to achieve that, please take a look at I(examples) section."
|
For an example of how to achieve that, please take a look at I(examples) section."
|
||||||
|
- "In order to use this module you have to install oVirt Python SDK.
|
||||||
|
To ensure it's installed with correct version you can create the following task:
|
||||||
|
I(pip: name=ovirt-engine-sdk-python version=4.0.0)"
|
||||||
'''
|
'''
|
||||||
|
|
||||||
EXAMPLES = '''
|
EXAMPLES = '''
|
||||||
|
|
Loading…
Reference in a new issue