29 lines
848 B
YAML
29 lines
848 B
YAML
|
---
|
||
|
# This playbook is meant to be used with callable variables, like adhoc or AWX.
|
||
|
# What: Creates dns zones in the idm infrastructure based on the variables
|
||
|
# provided.
|
||
|
# NOTE: For usage in AWX, select an IPA server
|
||
|
|
||
|
- name: Create a DNS Zone
|
||
|
hosts: all
|
||
|
become: false
|
||
|
gather_facts: false
|
||
|
|
||
|
tasks:
|
||
|
- name: "Checking for user variables"
|
||
|
assert:
|
||
|
that:
|
||
|
- ipa_admin | mandatory
|
||
|
- ipaadmin_password | mandatory
|
||
|
- ipa_zone | mandatory
|
||
|
success_msg: "Required variables provided"
|
||
|
fail_msg: "We are missing zone information or ipa admin password"
|
||
|
|
||
|
- name: "Creating DNS Zone"
|
||
|
freeipa.ansible_freeipa.ipadnszone:
|
||
|
ipaadmin_principal: "{{ ipa_admin }}"
|
||
|
ipaadmin_password: "{{ ipaadmin_password }}"
|
||
|
name: "{{ ipa_zone }}"
|
||
|
tags:
|
||
|
- dns
|