forked from hswaw/hscloud
This is in preparation for moving the sso source code into hscloud. Change-Id: I4325df617dc82c17fb4c96762743f0b70122976f
15 lines
347 B
Jsonnet
15 lines
347 B
Jsonnet
local sso = import "sso.libsonnet";
|
|
|
|
{
|
|
sso: sso {
|
|
cfg+: {
|
|
domain: "sso.hackerspace.pl",
|
|
database+: {
|
|
host: "public.crdb-waw1.svc.cluster.local",
|
|
name: "sso",
|
|
username: "sso",
|
|
tlsSecret: "client-sso-certificate",
|
|
},
|
|
},
|
|
},
|
|
}
|