Manage DNS servers using Ansible #93
1 changed files with 1 additions and 1 deletions
|
@ -238,7 +238,7 @@ def make_records(args, ty):
|
||||||
if value is not None
|
if value is not None
|
||||||
}
|
}
|
||||||
|
|
||||||
multi_keys = (k for k, v in types.items() if is_multi_records(v))
|
multi_keys = {k for k, v in types.items() if is_multi_records(v)}
|
||||||
|
|
||||||
for single_args in product_dict(clean_args, multi_keys):
|
for single_args in product_dict(clean_args, multi_keys):
|
||||||
yield ty(**single_args)
|
yield ty(**single_args)
|
||||||
|
|
Loading…
Reference in a new issue