diff --git a/changelogs/fragments/T7011-lldp-integration-tests.yaml b/changelogs/fragments/T7011-lldp-integration-tests.yaml
index 8735e7cf..8913866e 100644
--- a/changelogs/fragments/T7011-lldp-integration-tests.yaml
+++ b/changelogs/fragments/T7011-lldp-integration-tests.yaml
@@ -1,8 +1,9 @@
---
breaking_changes:
- if "address" is available, merge will cause it to be added, in contrast to
the previous behavior where it was replaced. When used in replace mode, it
will remove any existing addresses and replace them with the new one.
+ - civic_address is no longer a valid key (removed prior to 1.3)
minor_changes:
- lldp_global address is now addresses, with appropriate coercion
diff --git a/docs/vyos.vyos.vyos_lldp_interfaces_module.rst b/docs/vyos.vyos.vyos_lldp_interfaces_module.rst
index 78b0a73a..8ace2650 100644
--- a/docs/vyos.vyos.vyos_lldp_interfaces_module.rst
+++ b/docs/vyos.vyos.vyos_lldp_interfaces_module.rst
@@ -1,934 +1,764 @@
.. _vyos.vyos.vyos_lldp_interfaces_module:
******************************
vyos.vyos.vyos_lldp_interfaces
******************************
**LLDP interfaces resource module**
Version added: 1.0.0
.. contents::
:local:
:depth: 1
Synopsis
--------
- This module manages attributes of lldp interfaces on VyOS network devices.
Parameters
----------
.. raw:: html
- | Parameter |
+ Parameter |
Choices/Defaults |
Comments |
- |
+ |
config
list
/ elements=dictionary
|
|
A list of LLDP interfaces configurations.
|
|
-
+ |
enable
boolean
|
|
Disable LLDP on the interfaces.
|
|
-
+ |
location
dictionary
|
|
LLDP-MED location data.
|
|
|
-
-
- civic_based
-
-
- dictionary
-
- |
-
- |
-
- Civic-based location data.
- |
-
-
- |
- |
- |
-
- ca_info
-
-
- list
- / elements=dictionary
-
- |
-
- |
-
- LLDP-MED address info
- |
-
-
- |
- |
- |
- |
-
-
- ca_type
-
-
- integer
- / required
-
- |
-
- |
-
- LLDP-MED Civic Address type.
- |
-
-
- |
- |
- |
- |
-
-
- ca_value
-
-
- string
- / required
-
- |
-
- |
-
- LLDP-MED Civic Address value.
- |
-
-
-
- |
- |
- |
-
-
- country_code
-
-
- string
- / required
-
- |
-
- |
-
- Country Code
- |
-
-
-
- |
- |
-
coordinate_based
dictionary
|
|
Coordinate-based location.
|
|
|
|
-
+ |
altitude
integer
|
|
Altitude in meters.
|
|
|
|
-
+ |
datum
string
|
Choices:
- WGS84
- NAD83
- MLLW
|
Coordinate datum type.
|
|
|
|
-
+ |
latitude
string
/ required
|
|
Latitude.
|
|
|
|
-
+ |
longitude
string
/ required
|
|
Longitude.
|
|
|
-
+ |
elin
string
|
|
Emergency Call Service ELIN number (between 10-25 numbers).
|
|
-
+ |
name
string
/ required
|
|
Name of the LLDP interface.
|
- |
+ |
running_config
string
|
|
This option is used only with state parsed.
The value of this option should be the output received from the VyOS device by executing the command show configuration commands | grep lldp.
The state parsed reads the configuration from running_config option and transforms it into Ansible structured data as per the resource module's argspec and the value is then returned in the parsed key within the result.
|
- |
+ |
state
string
|
Choices:
merged ←
- replaced
- overridden
- deleted
- rendered
- parsed
- gathered
|
The state of the configuration after module completion.
|