cfdns/play.yml

15 lines
312 B
YAML
Raw Normal View History

2020-08-22 06:45:15 +00:00
---
- name: create cloudflare dns records
hosts: localhost
connection: local
gather_facts: smart
vars:
domains:
- sampledomain.local
tasks:
- name: "enforce state for {{item}}"
include_role:
name: create-records
vars_from: "{{item}}"
with_items: "{{domains}}"