Added a auth.session.secret config value for setting the express session secret

This commit is contained in:
Brian Leathem
2020-11-19 09:11:13 -08:00
parent 52e79a0032
commit 5c485ff60f
3 changed files with 27 additions and 2 deletions
+22 -1
View File
@@ -71,5 +71,26 @@
"files": [
"dist",
"migrations"
]
],
"configSchema": {
"$schema": "https://backstage.io/schema/config-v1",
"title": "@backstage/auth-backend",
"type": "object",
"properties": {
"auth": {
"type": "object",
"properties": {
"session": {
"type": "object",
"properties": {
"secret": {
"type": "string",
"visibility": "secret"
}
}
}
}
}
}
}
}