ansible-ipa-management/adhoc-ipaservice.yml

32 lines
1.0 KiB
YAML
Raw Normal View History

2021-02-01 08:08:26 +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
2023-08-23 06:55:38 +00:00
hosts: "{{ host|default('ipaserver') }}"
2021-02-01 08:08:26 +00:00
become: false
gather_facts: false
collections:
- freeipa.ansible_freeipa
2021-02-01 08:08:26 +00:00
tasks:
- name: "Checking for user variables"
2022-03-28 01:54:24 +00:00
ansible.builtin.assert:
2021-02-01 08:08:26 +00:00
that:
2024-02-13 05:35:41 +00:00
- ipaadmin_principal | mandatory
2021-02-01 08:08:26 +00:00
- ipaadmin_password | mandatory
- ipa_service | mandatory
success_msg: "Required variables provided"
fail_msg: "We are missing required information"
- name: "Creating Kerberos Service"
freeipa.ansible_freeipa.ipaservice:
2024-02-13 05:35:41 +00:00
ipaadmin_principal: "{{ ipaadmin_principal }}"
2021-02-01 08:08:26 +00:00
ipaadmin_password: "{{ ipaadmin_password }}"
name: "{{ ipa_service }}"
skip_host_check: "{{ ipa_skip_host_check | default(false) }}"
force: "{{ ipa_force | default(false) }}"
tags:
- services
2022-02-12 21:43:09 +00:00
...