Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kanopi/password-policy-90-days
A Drupal recipe that installs and configures Password Policy and sets 90 day expiration default.
https://github.com/kanopi/password-policy-90-days
do-not-archive drupal drupal-recipe internal-tool saplings
Last synced: about 1 month ago
JSON representation
A Drupal recipe that installs and configures Password Policy and sets 90 day expiration default.
- Host: GitHub
- URL: https://github.com/kanopi/password-policy-90-days
- Owner: kanopi
- Created: 2023-10-21T13:25:29.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-02-23T19:10:09.000Z (12 months ago)
- Last Synced: 2024-04-25T19:01:17.657Z (9 months ago)
- Topics: do-not-archive, drupal, drupal-recipe, internal-tool, saplings
- Language: JavaScript
- Homepage:
- Size: 13.7 KB
- Stars: 1
- Watchers: 14
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Password Policy - 90 Days
A Drupal recipe that installs and configures Password Policy and sets 90-day
expiration default.This recipe installs a Password Policy that has the following rules:
* Password must be changed every 90 days.
* Password can't be one of the 5 most recent passwords.
* Password must contain at least 1 letter character.
* Password must contain at least 1 special character.
* Password must contain at least 1 uppercase character.
* Password must contain at least 1 lowercase character.
* Password must contain at least 1 numeric character.
* Password character length must be at least 12 characters## Configuring Drupal for Recipes
See https://www.drupal.org/files/issues/2023-10-01/Configuring%20Drupal%20to%20Apply%20Recipes.md
The patch referenced in this file is not valid. Please refer to the [Recipes Initiative project page](https://www.drupal.org/project/distributions_recipes) for the patch version that applies to your current Drupal version.
After running `composer update drupal/core`, clear the Drupal cache with `drush cr` before doing any other recipe operations.
## Installing this Recipe
`composer require kanopi/password-policy-90-days`
## Applying this Recipe
`cd` into your drupal root.
Run`php core/scripts/drupal recipe recipes/contrib/password-policy-90-days`
Run `drush cr`**or**
If you have our Docksal command in your project, run the following command:
`fin recipe-apply password-policy-90-days`## Unpacking this Recipe
To unpack this recipe's dependencies to your site's composer.json, in the root
of your project run:`composer unpack kanopi/password-policy-90-days`
If you have our Docksal command in your project, run the following command:
`fin recipe-unpack kanopi/password-policy-90-days`## Known Issues
* If the Password Policy module is currently enabled, installation will fail.