summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoromnom62 <omnom62@outlook.com>2026-08-12 10:59:45 +1000
committeromnom62 <omnom62@outlook.com>2026-08-12 10:59:45 +1000
commit89626282bd7be03df54085a3a95f2df1b8969687 (patch)
tree5016c8e3948a710fea29df928838b2663428e00f
parent509de69af0f7ae156683a431d43af8adea5615e7 (diff)
downloadrest.vyos-T8989_wave4.tar.gz
rest.vyos-T8989_wave4.zip
T8989: dict_op refactor for firewall_*, nat, userT8989_wave4
-rw-r--r--plugins/modules/vyos_firewall_global.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/modules/vyos_firewall_global.py b/plugins/modules/vyos_firewall_global.py
index 6bd57a7..337f364 100644
--- a/plugins/modules/vyos_firewall_global.py
+++ b/plugins/modules/vyos_firewall_global.py
@@ -219,7 +219,7 @@ _GROUP_TYPES = {
# NOT tag nodes -- confirmed against vyos-1x (leafNode with <multi/>) --
# they're plain multi-value leaves, so dict_op's own native list handling
# applies to them directly; no reshaping needed.
-_TAG_KEYS = {device_key for device_key, _ in _GROUP_TYPES.values()}
+_TAG_KEYS = {device_key for device_key, _member_key in _GROUP_TYPES.values()}
def _group_to_device(g, member_key):