Jani Hyytiäinen

Results 5 comments of Jani Hyytiäinen

@kienzen87 @srinivasmummareddy how about if you try the following instead of using `AzureCLI@2` task?: ```yaml steps: - powershell: # Run a script in Windows PowerShell on Windows, and pwsh on...

@timdeschryver like said, the "Bearer " is hard coded in the `JwtBearerHandler` and only in that case the token gets assigned a value. ```cs if (authorization.StartsWith("Bearer ", StringComparison.OrdinalIgnoreCase)) { token...

Two things I needed to do: First enable [esModuleInterop](https://www.typescriptlang.org/tsconfig/#esModuleInterop) in `tsconfig.json`. This will also enable [allowSyntheticDefaultImports](https://www.typescriptlang.org/tsconfig/#allowSyntheticDefaultImports). After this, ensure that your `typescript` dev dependency in your `package.json` is up to...

FYI: `az aks update --name *** --resource-group *** --attach-acr ***` suddenly fails with `2.46.0` error `Could not create a role assignment for ACR. Are you an Owner on this subscription?`...

> Any workarounds for this? Just use previous version until a new one is fixed. For Github actions with ubuntu runners, the following works: ```yaml name: "az-cli" description: "install azure...