Skip to content

Commit ce31176

Browse files
authored
Merge pull request #5082 from hnanchahal/ldap_integration
Adding ldap support as auth backend
2 parents b1d71c5 + a0794d5 commit ce31176

File tree

5 files changed

+9
-1
lines changed

5 files changed

+9
-1
lines changed

CHANGELOG.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ Changelog
44
in development
55
--------------
66

7+
Added
8+
~~~~~
9+
* Added st2-auth-ldap pip requirements for LDAP auth integartion. (new feature) #5082
10+
Contributed by @hnanchahal
11+
712
Changed
813
~~~~~~~~~
914
* Improve the st2-self-check script to echo to stderr and exit if it isn't run with a

conf/st2.conf.sample

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ token_ttl = 86400
7777
# Standalone mode options - options below only apply when auth service is running in the standalone
7878
# mode.
7979

80-
# Authentication backend to use in a standalone mode. Available backends: flat_file.
80+
# Authentication backend to use in a standalone mode. Available backends: ldap, flat_file.
8181
backend = flat_file
8282
# JSON serialized arguments which are passed to the authentication backend in a standalone mode.
8383
backend_kwargs = None

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ flex==6.14.0
1717
git+https://github.com/StackStorm/logshipper.git@stackstorm_patched#egg=logshipper
1818
git+https://github.com/StackStorm/orquesta.git@v1.2.0#egg=orquesta
1919
git+https://github.com/StackStorm/st2-auth-backend-flat-file.git@master#egg=st2-auth-backend-flat-file
20+
git+https://github.com/StackStorm/st2-auth-ldap.git@master#egg=st2-auth-ldap
2021
gitpython==2.1.15
2122
greenlet==0.4.15
2223
gunicorn==19.9.0

st2auth/in-requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,5 @@ six
88
stevedore
99
# For backward compatibility reasons, flat file backend is installed by default
1010
git+https://github.com/StackStorm/st2-auth-backend-flat-file.git@master#egg=st2-auth-backend-flat-file
11+
git+https://github.com/StackStorm/st2-auth-ldap.git@master#egg=st2-auth-ldap
1112
gunicorn

st2auth/requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
bcrypt==3.1.7
99
eventlet==0.25.1
1010
git+https://github.com/StackStorm/st2-auth-backend-flat-file.git@master#egg=st2-auth-backend-flat-file
11+
git+https://github.com/StackStorm/st2-auth-ldap.git@master#egg=st2-auth-ldap
1112
gunicorn==19.9.0
1213
oslo.config<1.13,>=1.12.1
1314
passlib==1.7.1

0 commit comments

Comments
 (0)