diff --git a/src/util/azure/auth.ts b/src/util/azure/auth.ts index 97e5a35..87fd75e 100644 --- a/src/util/azure/auth.ts +++ b/src/util/azure/auth.ts @@ -70,7 +70,7 @@ export async function loginToAzure(logger: Logger): Promise { // if old AUTH config is not found, we trigger a new login flow if (auth === null) { - auth = await retryLogin(auth, process.env.AZURE_TENANT_ID); + auth = await retryLogin(auth, process.env.TENANT_ID); } else { const creds = auth.credentials as TokenCredentials; const { clientId, domain, username, tokenAudience, environment } = creds;