Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Matrix
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Operate
Environments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeDomum
Matrix
Commits
d6ae4041
Unverified
Commit
d6ae4041
authored
1 year ago
by
Maximilian Bosch
Committed by
GitHub
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
Add `client_secret_path` as alternative for `client_secret` for OIDC config (#16030)
parent
358896e1
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
changelog.d/16030.feature
+1
-0
1 addition, 0 deletions
changelog.d/16030.feature
docs/usage/configuration/config_documentation.md
+8
-0
8 additions, 0 deletions
docs/usage/configuration/config_documentation.md
synapse/config/oidc.py
+15
-1
15 additions, 1 deletion
synapse/config/oidc.py
with
24 additions
and
1 deletion
changelog.d/16030.feature
0 → 100644
+
1
−
0
View file @
d6ae4041
Allow
specifying
`client_secret_path`
as
alternative
to
`client_secret`
for
OIDC
providers.
This
avoids
leaking
the
client
secret
in
the
homeserver
config.
Contributed
by
@Ma27.
This diff is collapsed.
Click to expand it.
docs/usage/configuration/config_documentation.md
+
8
−
0
View file @
d6ae4041
...
...
@@ -3204,6 +3204,14 @@ Options for each entry include:
* `client_secret`
:
oauth2 client secret to use. May be omitted if
`client_secret_jwt_key` is given, or if `client_auth_method` is 'none'.
Must be omitted if `client_secret_path` is specified.
* `client_secret_path`
:
path to the oauth2 client secret to use. With that
it's not necessary to leak secrets into the config file itself.
Mutually exclusive with `client_secret`. Can be omitted if
`client_secret_jwt_key` is specified.
*Added in Synapse 1.91.0.*
* `client_secret_jwt_key`: Alternative to client_secret
:
details of a key used
to create a JSON Web Token to be used as an OAuth2 client secret. If
...
...
This diff is collapsed.
Click to expand it.
synapse/config/oidc.py
+
15
−
1
View file @
d6ae4041
...
...
@@ -280,6 +280,20 @@ def _parse_oidc_config_dict(
for
x
in
oidc_config
.
get
(
"
attribute_requirements
"
,
[])
]
# Read from either `client_secret_path` or `client_secret`. If both exist, error.
client_secret
=
oidc_config
.
get
(
"
client_secret
"
)
client_secret_path
=
oidc_config
.
get
(
"
client_secret_path
"
)
if
client_secret_path
is
not
None
:
if
client_secret
is
None
:
client_secret
=
read_file
(
client_secret_path
,
config_path
+
(
"
client_secret_path
"
,)
).
rstrip
(
"
\n
"
)
else
:
raise
ConfigError
(
"
Cannot specify both client_secret and client_secret_path
"
,
config_path
+
(
"
client_secret
"
,),
)
return
OidcProviderConfig
(
idp_id
=
idp_id
,
idp_name
=
oidc_config
.
get
(
"
idp_name
"
,
"
OIDC
"
),
...
...
@@ -288,7 +302,7 @@ def _parse_oidc_config_dict(
discover
=
oidc_config
.
get
(
"
discover
"
,
True
),
issuer
=
oidc_config
[
"
issuer
"
],
client_id
=
oidc_config
[
"
client_id
"
],
client_secret
=
oidc_config
.
get
(
"
client_secret
"
)
,
client_secret
=
client_secret
,
client_secret_jwt_key
=
client_secret_jwt_key
,
client_auth_method
=
oidc_config
.
get
(
"
client_auth_method
"
,
"
client_secret_basic
"
),
pkce_method
=
oidc_config
.
get
(
"
pkce_method
"
,
"
auto
"
),
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment