Overriding AUTH_PASSWORD_VALIDATORS in lms

We have a requirement to adjust the user password strength. Is there a way for me to override the AUTH_PASSWORD_VALIDATORS setting using tutor?

Thanks!

What did you try already?

To fix this, I wound up creating a tutor YAML file plugin with the following values in the yml file:

openedx-common-settings: |
AUTH_PASSWORD_VALIDATORS = [
{
‘NAME’: ‘django.contrib.auth.password_validation.UserAttributeSimilarityValidator’,
},
{
‘NAME’: ‘django.contrib.auth.password_validation.MinimumLengthValidator’,
‘OPTIONS’: {
‘min_length’: 9,
}
},
{
‘NAME’: ‘django.contrib.auth.password_validation.CommonPasswordValidator’,
},
{
‘NAME’: ‘django.contrib.auth.password_validation.NumericPasswordValidator’,
},
]