Simon Wåhlin

Results 47 comments of Simon Wåhlin

I'm not sure if this is what you want, but here are two options that might do what you are looking for that works already today. ## Option 1: Use...

Problem seems to be that mcr.microsoft.com responds with a HTML page that the ACR SDK tries to parse as JSON. The bicep language server is downloading a module index which...

Tests for Get-BicepConfig is failing since the resulting json returns the list of providers in a non-deterministic order. We need to find a better way of comparing the actual and...

Interesting. For this to work I think we till need to add a -Path parameter where you supply a path to a bicep file, otherwise we won't know where to...

Hi @ld0614, Thanks for opening an issue! You are right, `Export-BicepChildResourse` was sadly deprecated since it didn't support all resource types and required way to much code to maintain. Try...

I see! I'd start by trying something like this: ```powershell $ResourceGroups = Search-AzResourceGraph -Query "resourceContainers | where subscriptionId == '$SubscriptionId' | where type =~ 'microsoft.resources/subscriptions/resourcegroups'" foreach ( $ResourceGroup in $ResourceGroups.name)...

Glad it solved your problem! I have however not been able to reproduce the error. That error message happens when Search-AzResourceGraph returns an entry where the id property is null....