ansible.utils.next_nth_usable filter – This filter returns the next nth usable ip within a network described by value.
Note
This filter plugin is part of the ansible.utils collection (version 5.1.2).
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.next_nth_usable
.
New in ansible.utils 2.5.0
Synopsis
This filter returns the next nth usable ip within a network described by value.
Use next_nth_usable to find the next nth usable IP address in relation to another within a range
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.next_nth_usable(key1=value1, key2=value2, ...)
Parameter |
Comments |
---|---|
index value next nth usable IP address |
|
subnets or individual address input for next_nth_usable plugin |
Examples
#### examples
# Ipv4 filter plugin with different queries.
- name: next_nth_usable returns the second usable IP address for the given IP range
debug:
msg: "{{ '192.168.122.1/24' | ansible.utils.next_nth_usable(2) }}"
- name: If there is no usable address, it returns an empty string.
debug:
msg: "{{ '192.168.122.254/24' | ansible.utils.next_nth_usable(2) }}"
# TASK [next_nth_usable returns the second usable IP address for the given IP range] **************************
# task path: /Users/amhatre/ansible-collections/playbooks/test_next_nth_usable.yaml:9
# Loading collection ansible.utils from /Users/amhatre/ansible-collections/collections/ansible_collections/ansible/utils
# ok: [localhost] => {
# "msg": "192.168.122.3"
# }
#
# TASK [If there is no usable address, it returns an empty string.] *******************************************
# task path: /Users/amhatre/ansible-collections/playbooks/test_next_nth_usable.yaml:14
# Loading collection ansible.utils from /Users/amhatre/ansible-collections/collections/ansible_collections/ansible/utils
# ok: [localhost] => {
# "msg": ""
# }
Return Value
Key |
Description |
---|---|
Returns the next nth usable ip within a network described by value. Returned: success |