mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-03-26 21:33:05 +00:00
17 lines
382 B
YAML
17 lines
382 B
YAML
---
|
|
- name: Host member IP addresses present
|
|
hosts: ipaserver
|
|
become: true
|
|
|
|
tasks:
|
|
- name: Ensure host01.example.com IP addresses present
|
|
ipahost:
|
|
ipaadmin_password: SomeADMINpassword
|
|
name: host01.example.com
|
|
ip_address:
|
|
- 192.168.0.123
|
|
- fe80::20c:29ff:fe02:a1b3
|
|
- 192.168.0.124
|
|
- fe80::20c:29ff:fe02:a1b4
|
|
action: member
|