mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-05-14 13:32:10 +00:00
17 lines
387 B
YAML
17 lines
387 B
YAML
---
|
|
- name: Permission Allow Read Employee Number Example
|
|
hosts: ipaserver
|
|
become: true
|
|
|
|
tasks:
|
|
- name: Ensure permission is present with set of rights to attribute employeenumber
|
|
ipapermission:
|
|
ipaadmin_password: SomeADMINpassword
|
|
name: TestPerm1
|
|
object_type: user
|
|
right:
|
|
- read
|
|
- search
|
|
- compare
|
|
attrs: employeenumber
|