diff options
author | Gaige B Paulsen <gaige@cluetrust.com> | 2024-12-30 06:51:56 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-30 06:51:56 -0500 |
commit | dbd87e3ab89b7839e41df76c2fa7712855853fd3 (patch) | |
tree | 4e4f6d04277efcfcb1b747e72bf53cdb2ac0dec6 /plugins/modules | |
parent | cae1c6cc42fa786095433692a6d685f029bbde2e (diff) | |
download | vyos.vyos-dbd87e3ab89b7839e41df76c2fa7712855853fd3.tar.gz vyos.vyos-dbd87e3ab89b7839e41df76c2fa7712855853fd3.zip |
T6982: update SNMP module for 1.3+ (#369)
* fix: get SNMP integration tests running
* fix: remove no_log from docs because it fails sanity
* tests: fix unit tests and no_log args
* tests: fix error in hostname integration test
Diffstat (limited to 'plugins/modules')
-rw-r--r-- | plugins/modules/vyos_snmp_server.py | 18 |
1 files changed, 1 insertions, 17 deletions
diff --git a/plugins/modules/vyos_snmp_server.py b/plugins/modules/vyos_snmp_server.py index 87ddb794..f574919a 100644 --- a/plugins/modules/vyos_snmp_server.py +++ b/plugins/modules/vyos_snmp_server.py @@ -20,7 +20,7 @@ short_description: Manages snmp_server resource module description: This module manages the snmp server attributes of Vyos network devices author: Gomathi Selvi Srinivasan (@GomathiselviS) notes: - - Tested against vyos 1.3.8 + - Tested against vyos 1.3.8, 1.4.1 - This module works with connection C(network_cli). - The Configuration defaults of the Vyos network devices are supposed to hinder idempotent behavior of plays @@ -136,9 +136,6 @@ options: plaintext_key: description: Defines the clear text password for authentication type: str - engine_id: - description: Defines the engineID. - type: str port: description: Specifies the TCP/UDP port of a destination for SNMP traps/informs. type: int @@ -164,16 +161,6 @@ options: description: Specifies the type of notification between inform and trap type: str choices: ['inform', 'trap'] - tsm: - description: Specifies that the snmpd uses encryption - type: dict - suboptions: - local_key: - description: Defines the server certificate fingerprint or key-file name. - type: str - port: - description: Defines the port for tsm. - type: int users: description: Defines username for authentication type: list @@ -196,9 +183,6 @@ options: plaintext_key: description: Defines the clear text password for authentication type: str - engine_id: - description: Defines the engineID. - type: str group: description: Specifies group for user name type: str |