Configure bind for designate

This role configures a bind container for use with designate worker.

Change-Id: I1b6674acbd6f999474cd66cb44357cf6b756a7d0
This commit is contained in:
Brent Eagles
2021-02-17 15:09:49 -03:30
parent 681477c7d3
commit 0ac0d5d39b
10 changed files with 210 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
---
- name: ensure target directory exists
become: true
file:
path: "{{ designate_named_conf_path|dirname }}"
state: directory
- name: generate named.conf
become: true
template:
src: named.conf.j2
dest: "{{ designate_named_conf_path }}"