diff --git a/src/common/config/variables/Variables.ts b/src/common/config/variables/Variables.ts index 10df52e7..93a426b2 100644 --- a/src/common/config/variables/Variables.ts +++ b/src/common/config/variables/Variables.ts @@ -186,10 +186,10 @@ export class BackendVariables { this.OVH_CONSUMER_KEY = process.env["OVH_CONSUMER_KEY"]!; this.OVH_SMS_SERVICE_NAME = process.env["OVH_SMS_SERVICE_NAME"]!; this.SMS_FACTOR_TOKEN = process.env["SMS_FACTOR_TOKEN"]!; - this.SCW_ACCESS_KEY_ID = process.env["SCW_ACCESS_KEY_ID"]!; - this.SCW_ACCESS_KEY_SECRET = process.env["SCW_ACCESS_KEY_SECRET"]!; - this.SCW_BUCKET_ENDPOINT = process.env["SCW_BUCKET_ENDPOINT"]!; - this.SCW_BUCKET_NAME = process.env["SCW_BUCKET_NAME"]!; + this.SCW_ACCESS_KEY_ID = process.env["ACCESS_KEY_ID"]!; + this.SCW_ACCESS_KEY_SECRET = process.env["ACCESS_KEY_SECRET"]!; + this.SCW_BUCKET_ENDPOINT = process.env["BUCKET_ENDPOINT"]!; + this.SCW_BUCKET_NAME = process.env["BUCKET_NAME"]!; } public async validate(groups?: string[]) { const validationOptions = groups ? { groups } : undefined;