admin.passwordpolicy#
Collection Note
This module is part of the nokia.eda_core_v1 collection. To install the collection, use:
Added in version1.0.0. Synopsis#
- Description will be added soon.
Parameters#
| Parameter | Defaults / Choices | Comments |
|---|---|---|
| allowUserName bool | If true, prevents passwords from being or containing the user name. | |
| authToken str required | HTTP authentication (Bearer authentication) string in the format of "Bearer TOKEN". Required unless state is cronly. | |
| baseUrl str required | EDA API URL including the schema and port (if non standard for the provided schema). Example - https://try.eda.demo:9443. Required unless state is cronly. | |
| caPath str required | A path to the PEM-encoded CA certificate to use for TLS verification. Required unless state is cronly. | |
| digits int | Minimum number of digits required in a password. Can be zero. | |
| forceExpiredPasswordChange int | The maximum number of days until a password change is enforced. A value of zero means no change is required. | |
| get-default bool | If set to true, the default password policy definition is returned, rather than the current password policy. | |
| hashingAlgorithm str | The hashing algorithm to use when hashing stored passwords. | |
| length int | Minimum password length. This must be at least 1. | |
| lowerCase int | Minimum number of lower case characters required in a password. Can be zero. | |
| maxFailureWaitSeconds int | The number of seconds before the users access will be restored, after too many authentication failures. | |
| maxLoginFailure int | The number of login/authentication failures before a lockout policy takes effect. Zero means no enforcement. | |
| passwordHistory int | The number of passwords remembered to enforce no re-use of passwords. Zero means no re-use enforcement. | |
| permanentLockout bool | If true, lockout is permanent and the users access must be re-enabled by an administrator. If false, the users access will be re-enabled after maxFailureWaitSeconds seconds. | |
| resetTimeSeconds int | When lockout is not permanent, the count of authentication failures for a user will be reset this many seconds after the last authentication failure. | |
| specialChars int | Minimum number of special characters required in a password. Can be zero. | |
| state str required | Choices: query, present | State of the requested resource object. |
| tlsSkipVerify bool required | A flag to control the TLS verification of the session. Required unless state is cronly. | |
| upperCase int | Minimum number of upper case characters required in a password. Can be zero. |
Authors#
- Roman Dodin (@hellt)