Replies: 1 comment
-
This should be fixed with #154 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello, all!
According tho the official documentation here
ip
isrequired
string and should containIPv4 or IPv6 comma-separated addresses to be returned for the host
.So when I have this structure it fails:
item={'host': 'storage', 'domain': 'googleapis.com', 'ip': '192.168.0.1,192.168.0.2', 'descr': 'some description'}
and works with this:
item={'host': 'storage', 'domain': 'googleapis.com', 'ip': '192.168.0.1', 'descr': 'some description'}
I want to create PR to change
is_ipv4_address
function incore/plugins/module_utils/__impl/addresses.py
like this:Thank you!
Beta Was this translation helpful? Give feedback.
All reactions