ovirt.ovirt.ovirt_permission_info – Retrieve information about one or more oVirt/RHV permissions¶
Note
This plugin is part of the ovirt.ovirt collection (version 1.4.1).
To install it use: ansible-galaxy collection install ovirt.ovirt
.
To use it in a playbook, specify: ovirt.ovirt.ovirt_permission_info
.
New in version 1.0.0: of ovirt.ovirt
Synopsis¶
Retrieve information about one or more oVirt/RHV permissions.
This module was called
ovirt_permission_facts
before Ansible 2.9, returningansible_facts
. Note that the ovirt.ovirt.ovirt_permission_info module no longer returnsansible_facts
!
Requirements¶
The below requirements are needed on the host that executes this module.
python >= 2.7
ovirt-engine-sdk-python >= 4.4.0
Parameters¶
Notes¶
Note
This module returns a variable
ovirt_permissions
, which contains a list of permissions. You need to register the result with the register keyword to use it.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: pip: name=ovirt-engine-sdk-python version=4.4.0
Examples¶
# Examples don't contain auth parameter for simplicity,
# look at ovirt_auth module to see how to reuse authentication:
# Gather information about all permissions of user with username C(john):
- ovirt.ovirt.ovirt_permission_info:
user_name: john
authz_name: example.com-authz
register: result
- ansible.builtin.debug:
msg: "{{ result.ovirt_permissions }}"
Return Values¶
Common return values are documented here, the following are the fields unique to this module:
Authors¶
Ondra Machacek (@machacekondra)
Martin Necas (@mnecas)