diff options
Diffstat (limited to 'plugins/modules/vyos_lldp.py')
-rw-r--r-- | plugins/modules/vyos_lldp.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/modules/vyos_lldp.py b/plugins/modules/vyos_lldp.py index 9b138c1..feaf841 100644 --- a/plugins/modules/vyos_lldp.py +++ b/plugins/modules/vyos_lldp.py @@ -43,6 +43,7 @@ options: description: - Name of the interfaces. type: list + elements: str state: description: - State of the link aggregation group. @@ -100,7 +101,7 @@ def main(): """ main entry point for module execution """ argument_spec = dict( - interfaces=dict(type="list"), + interfaces=dict(type="list", elements="str"), state=dict( default="present", choices=["present", "absent", "enabled", "disabled"], |