mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
adds alias parameter to nios_host_record (#39469)
This commit is contained in:
parent
a9e53cdb68
commit
55de3d07c5
1 changed files with 9 additions and 0 deletions
|
@ -68,6 +68,12 @@ options:
|
|||
required: true
|
||||
aliases:
|
||||
- address
|
||||
aliases:
|
||||
version_added: "2.6"
|
||||
description:
|
||||
- Configures an optional list of additional aliases to add to the host
|
||||
record. These are equivalent to CNAMEs but held within a host
|
||||
record. Must be in list format.
|
||||
ttl:
|
||||
description:
|
||||
- Configures the TTL to be associated with this host record
|
||||
|
@ -99,6 +105,8 @@ EXAMPLES = '''
|
|||
name: host.ansible.com
|
||||
ipv4:
|
||||
- address: 192.168.10.1
|
||||
aliases:
|
||||
- cname.ansible.com
|
||||
state: present
|
||||
provider:
|
||||
host: "{{ inventory_hostname_short }}"
|
||||
|
@ -191,6 +199,7 @@ def main():
|
|||
|
||||
ipv4addrs=dict(type='list', aliases=['ipv4'], elements='dict', options=ipv4addr_spec, transform=ipv4addrs),
|
||||
ipv6addrs=dict(type='list', aliases=['ipv6'], elements='dict', options=ipv6addr_spec, transform=ipv6addrs),
|
||||
aliases=dict(type='list'),
|
||||
|
||||
ttl=dict(type='int'),
|
||||
|
||||
|
|
Loading…
Reference in a new issue