@nsshunt/stsconfig 1.25.102 → 1.25.103
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/stsconfig.mjs
CHANGED
|
@@ -1547,10 +1547,6 @@ function SetupConfig(envOptions2, logger) {
|
|
|
1547
1547
|
lambdaprometheusclusterport: process.env.LAMBDA_PROM_CLUSTER_PORT === void 0 ? "3019" : process.env.LAMBDA_PROM_CLUSTER_PORT,
|
|
1548
1548
|
lambdaservicename: process.env.LAMBDA_SERVICE_NAME === void 0 ? "STSLambda" : process.env.LAMBDA_SERVICE_NAME,
|
|
1549
1549
|
lambdaserviceversion: process.env.LAMBDA_SERVICE_VERSION === void 0 ? "1.0.0" : process.env.LAMBDA_SERVICE_VERSION,
|
|
1550
|
-
lambdaclientid: process.env.LAMBDA_CLIENT_ID,
|
|
1551
|
-
lambdaclientidfile: process.env.LAMBDA_CLIENT_ID_FILE,
|
|
1552
|
-
lambdaclientsecret: process.env.LAMBDA_CLIENT_SECRET,
|
|
1553
|
-
lambdaclientsecretfile: process.env.LAMBDA_CLIENT_SECRET_FILE,
|
|
1554
1550
|
publishinterval: process.env.PUBLISH_INTERVAL === void 0 ? 1e3 : parseInt(process.env.PUBLISH_INTERVAL),
|
|
1555
1551
|
publishtimeout: process.env.PUBLISH_TIMEOUT === void 0 ? 750 : parseInt(process.env.PUBLISH_TIMEOUT),
|
|
1556
1552
|
transport: process.env.TRANSPORT === void 0 ? "RESTAPI" : process.env.TRANSPORT,
|
|
@@ -1622,10 +1618,6 @@ function SetupConfig(envOptions2, logger) {
|
|
|
1622
1618
|
};
|
|
1623
1619
|
const fileconfig = [
|
|
1624
1620
|
{ fileprop: "dbpasswordfile", prop: "dbpassword" },
|
|
1625
|
-
// Client ID file processing
|
|
1626
|
-
{ fileprop: "lambdaclientidfile", prop: "lambdaclientid" },
|
|
1627
|
-
// Client secret file processing
|
|
1628
|
-
{ fileprop: "lambdaclientsecretfile", prop: "lambdaclientsecret" },
|
|
1629
1621
|
// JWKS secret file processing
|
|
1630
1622
|
{ fileprop: "tsjwksstorepathfile", prop: "tsjwksstorepath" },
|
|
1631
1623
|
// InfluxDB file processing
|