mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
parent
9ea1b18ff7
commit
a2650cbe05
1 changed files with 4 additions and 2 deletions
|
@ -237,7 +237,9 @@ def check_declarative_intent_params(want, module):
|
||||||
for i in w['interfaces']:
|
for i in w['interfaces']:
|
||||||
obj_in_have = search_obj_in_list(w['name'], have)
|
obj_in_have = search_obj_in_list(w['name'], have)
|
||||||
|
|
||||||
if obj_in_have and i not in obj_in_have.get('interfaces', []):
|
if obj_in_have:
|
||||||
|
interfaces = obj_in_have.get('interfaces')
|
||||||
|
if interfaces is not None and i not in interfaces:
|
||||||
module.fail_json(msg="Interface %s not configured on vrf %s" % (i, w['name']))
|
module.fail_json(msg="Interface %s not configured on vrf %s" % (i, w['name']))
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue