43 lines
1.2 KiB
YAML
43 lines
1.2 KiB
YAML
---
|
|
# This playbook is meant to be used with callable variables, like adhoc or AWX.
|
|
# What: Creates a binder account for read-only binds
|
|
# What is expected:
|
|
# -> ipa_binder_name: Bind account name, in the form of name_binder
|
|
# -> ipa_binder_password: Bind account password
|
|
|
|
- name: Create binder account
|
|
hosts: "{{ host|default('ipaserver') }}"
|
|
become: true
|
|
|
|
tasks:
|
|
- name: "Check for user variables"
|
|
ansible.builtin.assert:
|
|
that:
|
|
- ipa_binder_name | mandatory
|
|
- ipa_binder_password | mandatory
|
|
success_msg: "Required variables provided"
|
|
fail_msg: "We are missing user information"
|
|
|
|
- name: "Creating bind account template - binder"
|
|
ansible.builtin.template:
|
|
src: "tmp/binder_template.update"
|
|
dest: "/tmp/binder.update"
|
|
owner: root
|
|
group: root
|
|
mode: '0600'
|
|
tags:
|
|
- users
|
|
|
|
- name: "Adding in the bind account"
|
|
ansible.builtin.command: "/usr/sbin/ipa-ldap-updater /tmp/binder.update"
|
|
register: bind_account
|
|
changed_when: "bind_account.rc == 0"
|
|
tags:
|
|
- users
|
|
|
|
- name: "Remove template"
|
|
ansible.builtin.file:
|
|
path: "/tmp/binder.update"
|
|
state: absent
|
|
...
|