diff options
Diffstat (limited to 'plugins/modules/vyos_lldp_interface.py')
-rw-r--r-- | plugins/modules/vyos_lldp_interface.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/plugins/modules/vyos_lldp_interface.py b/plugins/modules/vyos_lldp_interface.py index 2fd1bc5..911add0 100644 --- a/plugins/modules/vyos_lldp_interface.py +++ b/plugins/modules/vyos_lldp_interface.py @@ -46,6 +46,22 @@ options: aggregate: description: List of interfaces LLDP should be configured on. type: list + elements: dict + suboptions: + name: + description: + - Name of the interface LLDP should be configured on. + required: True + type: str + state: + description: + - State of the LLDP configuration. + choices: + - present + - absent + - enabled + - disabled + type: str state: description: - State of the LLDP configuration. |