Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
configuration
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
configuration
Commits
df1ea3fd
Unverified
Commit
df1ea3fd
authored
Mar 26, 2018
by
Michael Terry
Committed by
GitHub
Mar 26, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #4386 from edx/mikix/password-complexity
Add empty default for EDXAPP_PASSWORD_COMPLEXITY
parents
0c9ce8de
b6fd3a69
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletions
+6
-1
CHANGELOG.md
+3
-0
playbooks/roles/edxapp/defaults/main.yml
+3
-1
No files found.
CHANGELOG.md
View file @
df1ea3fd
-
Role: edxapp
-
Added empty
`EDXAPP_PASSWORD_COMPLEXITY`
setting to ease overriding complexity.
-
Role: splunkforwarder
-
Updated the role so the splunkforwarder can be installed on Amazon Linux OS environment, which is a RHEL variant
...
...
playbooks/roles/edxapp/defaults/main.yml
View file @
df1ea3fd
...
...
@@ -825,9 +825,10 @@ EDXAPP_ICP_LICENSE: !!null
# Base Cookie Domain to share cookie across edx domains
EDXAPP_BASE_COOKIE_DOMAIN
:
"
{{
EDXAPP_LMS_SITE_NAME
}}"
#
The minimum and maximum length for the password account field
#
Account password configuration
EDXAPP_PASSWORD_MIN_LENGTH
:
2
EDXAPP_PASSWORD_MAX_LENGTH
:
75
EDXAPP_PASSWORD_COMPLEXITY
:
{}
# The age at which a learner no longer requires parental consent, or None
EDXAPP_PARENTAL_CONSENT_AGE_LIMIT
:
13
...
...
@@ -1317,6 +1318,7 @@ lms_env_config:
ENTERPRISE_COURSE_ENROLLMENT_AUDIT_MODES
:
"
{{
EDXAPP_ENTERPRISE_COURSE_ENROLLMENT_AUDIT_MODES
}}"
PASSWORD_MIN_LENGTH
:
"
{{
EDXAPP_PASSWORD_MIN_LENGTH
}}"
PASSWORD_MAX_LENGTH
:
"
{{
EDXAPP_PASSWORD_MAX_LENGTH
}}"
PASSWORD_COMPLEXITY
:
"
{{
EDXAPP_PASSWORD_COMPLEXITY
}}"
ENTERPRISE_ENROLLMENT_API_URL
:
"
{{
EDXAPP_ENTERPRISE_ENROLLMENT_API_URL
}}"
ENTERPRISE_SUPPORT_URL
:
"
{{
EDXAPP_ENTERPRISE_SUPPORT_URL
}}"
PARENTAL_CONSENT_AGE_LIMIT
:
"
{{
EDXAPP_PARENTAL_CONSENT_AGE_LIMIT
}}"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment