ansible.utils.nthhost filter – This filter returns the nth host within a network described by value.
Note
This filter plugin is part of the ansible.utils collection (version 2.10.3).
You might already have this collection installed if you are using the ansible
package.
It is not included in ansible-core
.
To check whether it is installed, run ansible-galaxy collection list
.
To install it, use: ansible-galaxy collection install ansible.utils
.
To use it in a playbook, specify: ansible.utils.nthhost
.
New in ansible.utils 2.5.0
Synopsis
This filter returns the nth host within a network described by value. To return the nth ip from a network, use the filter nthhost.
Nthhost also supports a negative value.
Keyword parameters
This describes keyword parameters of the filter. These are the values key1=value1
, key2=value2
and so on in the following example: input | ansible.utils.nthhost(key1=value1, key2=value2, ...)
.
Parameter |
Comments |
---|---|
nth host |
|
The network address or range to test against. |
Examples
#### examples
- name: To return the nth ip from a network, use the filter nthhost.
debug:
msg: "{{ '10.0.0.0/8' | ansible.utils.nthhost(305) }}"
- name: nthhost also supports a negative value.
debug:
msg: "{{ '10.0.0.0/8' | ansible.utils.nthhost(-1) }}"
# TASK [To return the nth ip from a network, use the filter nthhost.] *****************************************
# task path: /Users/amhatre/ansible-collections/playbooks/test_nthhost.yaml:7
# Loading collection ansible.utils from /Users/amhatre/ansible-collections/collections/ansible_collections/ansible/utils
# ok: [localhost] => {
# "msg": "10.0.1.49"
# }
#
# TASK [nthhost also supports a negative value.] **************************************************************
# task path: /Users/amhatre/ansible-collections/playbooks/test_nthhost.yaml:11
# Loading collection ansible.utils from /Users/amhatre/ansible-collections/collections/ansible_collections/ansible/utils
# ok: [localhost] => {
# "msg": "10.255.255.255"
# }
Return Value
Key |
Description |
---|---|
Returns nth host from network Returned: success |