You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have tried changing from filters: {'address': '[10.23.14.0/24]'} to filters: {'address': '10.23.14.0'} as when I print output address without filter is shown as without a mask, see below.
I used the example from here:
https://github.com/infobloxopen/bloxone-ansible/blob/main/sample_playbook/ipam/subnet/gather_subnet_with_filters.yaml
When I run it without the filter it shows me all subnets. With the filter set to an address which exists in my environment nothing is returned.
ok: [localhost] => {
"msg": {
"changed": false,
"failed": false,
"meta": {
"results": []
}
}
}
I have tried changing from filters: {'address': '[10.23.14.0/24]'} to filters: {'address': '10.23.14.0'} as when I print output address without filter is shown as without a mask, see below.
ok: [localhost] => {
"msg": {
"changed": false,
"failed": false,
"meta": {
"results": [
{
"address": "10.23.14.0",
"cidr": 24,
But that doesn't help either, with a filter on address there is no output.
The text was updated successfully, but these errors were encountered: