diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1-BL1A.cfg b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1-BL1A.cfg index bba9de35628..a03b2e77912 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1-BL1A.cfg +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/configs/DC1-BL1A.cfg @@ -49,6 +49,8 @@ spanning-tree mode mstp spanning-tree root super spanning-tree mst 0 priority 4096 ! +service unsupported-transceiver key1 dsafDSFfvadskjh3424 +! clock timezone correctly_templated_timezone ! vlan 150 diff --git a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1-BL1A.yml b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1-BL1A.yml index 6ef28f55d95..fecadd0a2f2 100644 --- a/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1-BL1A.yml +++ b/ansible_collections/arista/avd/molecule/eos_designs_unit_tests/intended/structured_configs/DC1-BL1A.yml @@ -652,6 +652,9 @@ router_ospf: bgp: enabled: true service_routing_protocols_model: multi-agent +service_unsupported_transceiver: + license_name: key1 + license_key: dsafDSFfvadskjh3424 sflow: vrfs: - name: OOB @@ -786,6 +789,3 @@ vxlan_interface: vni: 31 - name: TENANT_D_WAN_ZONE vni: 42 -unsupported_transceiver: - license_name: key1 - license_key: dsafDSFfvadskjh3424 diff --git a/python-avd/pyavd/_eos_designs/structured_config/base/__init__.py b/python-avd/pyavd/_eos_designs/structured_config/base/__init__.py index c40d53979b9..517a578097c 100644 --- a/python-avd/pyavd/_eos_designs/structured_config/base/__init__.py +++ b/python-avd/pyavd/_eos_designs/structured_config/base/__init__.py @@ -421,7 +421,7 @@ def spanning_tree(self) -> dict | None: return spanning_tree @cached_property - def unsupported_transceiver(self) -> dict | None: + def service_unsupported_transceiver(self) -> dict | None: """service_unsupported_transceiver based on unsupported_transceiver data-model.""" return self.inputs.unsupported_transceiver._as_dict() or None