From d9793f8fe1e0165c6aec84b77d1af2b30a7b354e Mon Sep 17 00:00:00 2001 From: Shazron Abdullah Date: Fri, 16 May 2025 19:03:40 +0800 Subject: [PATCH] fix: ACNA-3375 - update cli to use Deploy Service for audit logging --- src/lib/audit-logger.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/audit-logger.js b/src/lib/audit-logger.js index 078f7fd7..dfd014c0 100644 --- a/src/lib/audit-logger.js +++ b/src/lib/audit-logger.js @@ -17,8 +17,8 @@ const OPERATIONS = { } const AUDIT_SERVICE_ENDPOINTS = { - stage: process.env.AUDIT_SERVICE_ENDPOINT_STAGE ?? 'https://adp-auditlog-service-stage.adobeioruntime.net/api/v1/web/audit-log-api/event-post', - prod: process.env.AUDIT_SERVICE_ENDPOINT_PROD ?? 'https://adp-auditlog-service-prod.adobeioruntime.net/api/v1/web/audit-log-api/event-post' + stage: process.env.AUDIT_SERVICE_ENDPOINT_STAGE ?? 'https://deploy-service.stg.app-builder.corp.adp.adobe.io/audit-log-api/event-post', + prod: process.env.AUDIT_SERVICE_ENDPOINT_PROD ?? 'https://deploy-service.app-builder.adp.adobe.io/audit-log-api/event-post' } /**