Skip to content

Commit

Permalink
iam cert
Browse files Browse the repository at this point in the history
Signed-off-by: Romy <[email protected]>
  • Loading branch information
romayalon committed Nov 20, 2024
1 parent 6ee9af9 commit 112d4dd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion config.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,9 @@ config.BUFFERS_MEM_LIMIT = Math.min(
// CERTIFICATE CONFIG //
////////////////////////

config.STS_SERVICE_CERT_PATH = '/etc/sts-secret';
config.S3_SERVICE_CERT_PATH = '/etc/s3-secret';
config.STS_SERVICE_CERT_PATH = '/etc/sts-secret';
config.IAM_SERVICE_CERT_PATH = '/etc/iam-secret';
config.MGMT_SERVICE_CERT_PATH = '/etc/mgmt-secret';
config.EXTERNAL_DB_SERVICE_CERT_PATH = '/etc/external-db-secret';

Expand Down
1 change: 1 addition & 0 deletions src/util/ssl_utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ const certs = {
S3: new CertInfo(config.S3_SERVICE_CERT_PATH),
EXTERNAL_DB: new CertInfo(config.EXTERNAL_DB_SERVICE_CERT_PATH),
STS: new CertInfo(config.STS_SERVICE_CERT_PATH),
IAM: new CertInfo(config.IAM_SERVICE_CERT_PATH)
};

function generate_ssl_certificate() {
Expand Down

0 comments on commit 112d4dd

Please sign in to comment.