diff --git a/changelogs/fragments/270_fix_ipv6_from_pool_default_value.yml b/changelogs/fragments/270_fix_ipv6_from_pool_default_value.yml new file mode 100644 index 0000000..30e99ca --- /dev/null +++ b/changelogs/fragments/270_fix_ipv6_from_pool_default_value.yml @@ -0,0 +1,2 @@ +minor_changes: + - api_info, api_modify - add default value for ``from-pool`` field in ``/ipv6 address`` (https://github.com/ansible-collections/community.routeros/pull/270). \ No newline at end of file diff --git a/plugins/module_utils/_api_data.py b/plugins/module_utils/_api_data.py index 0b06cc5..4204052 100644 --- a/plugins/module_utils/_api_data.py +++ b/plugins/module_utils/_api_data.py @@ -1397,7 +1397,7 @@ PATHS = { 'comment': KeyInfo(can_disable=True, remove_value=''), 'disabled': KeyInfo(default=False), 'eui-64': KeyInfo(default=False), - 'from-pool': KeyInfo(), + 'from-pool': KeyInfo(default=''), 'interface': KeyInfo(required=True), 'no-dad': KeyInfo(default=False), },