Skip to content

Commit

Permalink
Fix missing identity id vars
Browse files Browse the repository at this point in the history
  • Loading branch information
benbp committed Oct 18, 2024
1 parent 4c05183 commit e316d64
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ describe("Azure Kubernetes Integration test", function () {

if (process.env.IDENTITY_CLIENT_SECRET) {
// Log in as service principal in CI
const clientId = requireEnvVar("ARM_CLIENT_ID");
const tenantId = requireEnvVar("ARM_TENANT_ID");
const clientId = requireEnvVar("AZURE_CLIENT_ID");
const tenantId = requireEnvVar("AZURE_TENANT_ID");
const oidc = requireEnvVar("ARM_OIDC_TOKEN");
runCommand(
"az",
Expand Down

0 comments on commit e316d64

Please sign in to comment.