mono-infrastructure/ansible/playbooks/adhoc-ipadns.yml

28 lines
768 B
YAML
Raw Normal View History

2020-12-28 02:27:45 +00:00
---
# 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.
- name: Create a DNS Zone
hosts: ipaserver
become: false
gather_facts: false
vars_files:
2021-01-03 05:18:47 +00:00
- vars/vaults/encpass.yml
2020-12-28 02:27:45 +00:00
tasks:
- name: "Checking for user variables"
assert:
that:
- 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_password: "{{ ipaadmin_password }}"
name: "{{ ipa_zone }}"
tags:
- dns