cfdns/play.yml

17 lines
335 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:
- jlay.io
- jlay.dev
- init3.io
tasks:
- name: "enforce state for {{item}}"
include_role:
name: create-records
vars_from: "{{item}}"
with_items: "{{domains}}"