Skip to content

Commit

Permalink
fix: upgrade all azure arm packages
Browse files Browse the repository at this point in the history
  • Loading branch information
looyvillelarry authored Oct 16, 2020
1 parent 7b61592 commit 7e56704
Show file tree
Hide file tree
Showing 88 changed files with 12,480 additions and 34,709 deletions.
155 changes: 74 additions & 81 deletions arm-helper/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion arm-helper/src/arm-helper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ export class ARMHelper {
logger.debug('template:\n' + JSON.stringify(template, null, 3));
logger.debug('input params:\n' + JSON.stringify(params, null, 3));

let client = new ResourceManagementClient(this._ctx.AuthToken, this._ctx.Environment.authentication.subscriptionId);
const token: any = this._ctx.AuthToken

let client = new ResourceManagementClient(token, this._ctx.Environment.authentication.subscriptionId);

logger.log('validating deployment...');
let validate = await client.deployments.validate(resourceGroup, deploymentName, deployment);
Expand Down
Loading

0 comments on commit 7e56704

Please sign in to comment.