2020-12-21 05:34:55 +00:00
|
|
|
---
|
|
|
|
# This playbook is meant to be used with callable variables, like adhoc or AWX.
|
|
|
|
# What: Creates kerberos services in the idm infrastructure based on the variables provided
|
|
|
|
|
|
|
|
- name: Create Services
|
|
|
|
hosts: ipaserver
|
|
|
|
become: false
|
|
|
|
gather_facts: false
|
|
|
|
vars_files:
|
2021-01-23 22:51:55 +00:00
|
|
|
- vars/vaults/kerbman.yml
|
2020-12-21 05:34:55 +00:00
|
|
|
|
|
|
|
tasks:
|
|
|
|
- name: "Checking for user variables"
|
|
|
|
assert:
|
|
|
|
that:
|
2021-01-05 22:24:00 +00:00
|
|
|
- ipa_admin | mandatory
|
2020-12-21 05:34:55 +00:00
|
|
|
- ipaadmin_password | mandatory
|
2020-12-23 10:52:34 +00:00
|
|
|
- ipa_service | mandatory
|
2020-12-21 05:34:55 +00:00
|
|
|
success_msg: "Required variables provided"
|
|
|
|
fail_msg: "We are missing required information"
|
|
|
|
|
|
|
|
- name: "Creating Kerberos Service"
|
|
|
|
freeipa.ansible_freeipa.ipaservice:
|
2021-01-05 22:24:00 +00:00
|
|
|
ipaadmin_principal: "{{ ipa_admin }}"
|
2020-12-21 05:34:55 +00:00
|
|
|
ipaadmin_password: "{{ ipaadmin_password }}"
|
2020-12-23 10:52:34 +00:00
|
|
|
name: "{{ ipa_service }}"
|
|
|
|
skip_host_check: "{{ ipa_skip_host_check | default(false) }}"
|
|
|
|
force: "{{ ipa_force | default(false) }}"
|
2020-12-21 05:34:55 +00:00
|
|
|
tags:
|
|
|
|
- services
|
2021-08-30 05:02:24 +00:00
|
|
|
...
|