We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0714014 commit a3c90c4Copy full SHA for a3c90c4
plugins/modules/dcnm_vrf.py
@@ -2069,7 +2069,7 @@ def get_diff_replace(self):
2069
for vrf in all_vrfs:
2070
# If the playbook sets the deploy key to False, then we need to remove the vrf from the deploy list.
2071
want_vrf_data = find_dict_in_list_by_key_value(search=self.config, key="vrf_name", value=vrf)
2072
- if want_vrf_data.get('deploy',True) is False:
+ if want_vrf_data.get('deploy', True) is False:
2073
modified_all_vrfs.remove(vrf)
2074
2075
if modified_all_vrfs:
0 commit comments