mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-03-26 21:33:05 +00:00
This patch adds 'name' to all example playbook tasks that did not have it, fixing ansible-lint's error 'unnamed-task'.
17 lines
436 B
YAML
17 lines
436 B
YAML
---
|
|
- name: Playbook to manage DNS records.
|
|
hosts: ipaserver
|
|
become: true
|
|
gather_facts: false
|
|
|
|
tasks:
|
|
- name: Ensure a TLSA record is present
|
|
ipadnsrecord:
|
|
ipaadmin_password: SomeADMINpassword
|
|
zone_name: example.com
|
|
name: host04
|
|
tlsa_cert_usage: 3
|
|
tlsa_selector: 1
|
|
tlsa_matching_type: 1
|
|
tlsa_cert_association_data: 9c0ad776dbeae8d9d55b0ad42899d30235c114d5f918fd69746e4279e47bdaa2
|