diff options
| author | omnom62 <omnom62@outlook.com> | 2026-07-01 12:40:46 +1000 |
|---|---|---|
| committer | omnom62 <omnom62@outlook.com> | 2026-07-01 12:40:46 +1000 |
| commit | a2c9a7b8cd03e34f2b50d925901b8a56a898a182 (patch) | |
| tree | 2ae638d482b7ea2235155387f80c9d51d247b5ac /plugins/modules | |
| parent | c107d03cc55ebf95400592e184b07fabba4b27b7 (diff) | |
| download | rest.vyos-a2c9a7b8cd03e34f2b50d925901b8a56a898a182.tar.gz rest.vyos-a2c9a7b8cd03e34f2b50d925901b8a56a898a182.zip | |
T8989: Wave 3 vyos_user module with integration and unit tests
Diffstat (limited to 'plugins/modules')
| -rw-r--r-- | plugins/modules/vyos_user.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/plugins/modules/vyos_user.py b/plugins/modules/vyos_user.py index 269d41a..8ccb148 100644 --- a/plugins/modules/vyos_user.py +++ b/plugins/modules/vyos_user.py @@ -34,7 +34,6 @@ options: password: description: Plaintext password. Write-only — hashed on device immediately. type: str - no_log: true update_password: description: - Control when password is updated. @@ -243,7 +242,7 @@ ARGUMENT_SPEC = dict( elements="dict", options=dict( name=dict(type="str", required=True), - key=dict(type="str", required=True), + key=dict(type="str", required=True, no_log=True), type=dict( type="str", required=True, |
