Server IP : 85.214.239.14 / Your IP : 18.119.132.80 Web Server : Apache/2.4.62 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.18 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /lib/python3/dist-packages/ansible_collections/ovirt/ovirt/roles/infra/roles/aaa_jdbc/ |
Upload File : |
oVirt AAA JDBC ============== The `aaa_jdbc` role manages users and groups in an AAA JDBC extension. Role Variables -------------- The items in `users` list can contain the following parameters: | Name | Default value | Description | |---------------|----------------|---------------------------------------| | state | present | Specifies whether the user is `present` or `absent`. | | name | UNDEF | Name of the user. | | authz_name | UNDEF | Authorization provider of the user. | | password | UNDEF | Password of the user. | | valid_to | UNDEF | Specifies the date that the account remains valid. | | attributes | UNDEF | A dict of attributes related to the user. Available attributes: <ul><li>department</li><li>description</li><li>displayName</li><li>email</li><li>firstName</li><li>lasName</li><li>title</li></ul>| The items in `user_groups` list can contain the following parameters: | Name | Default value | Description | |---------------|----------------|---------------------------------------| | state | present | Specifies whether the group is `present` or `absent`. | | name | UNDEF | Name of the group. | | authz_name | UNDEF | Authorization provider of the group. | | users | UNDEF | List of users that belong to this group. | Example Playbook ---------------- ```yaml - name: oVirt AAA jdbc hosts: localhost connection: local gather_facts: false vars: users: - name: user1 authz_name: internal-authz password: 1234568 valid_to: "2018-01-01 00:00:00Z" - name: user2 authz_name: internal-authz password: 1234568 valid_to: "2018-01-01 00:00:00Z" attributes: firstName: 'alice' department: 'Quality Engineering' user_groups: - name: group1 authz_name: internal-authz users: - user1 roles: - ovirt.ovirt.infra.roles.aaa_jdbc ```