Mikolaj Mackowiak
Mikolaj Mackowiak
@alex-frankel - do you have some ETA on the Deployments Service to improve conditionals on ARM side? basically whenever I want to have several resources behind same conditional (i.e. featureEnabled)...
Awesome. Will this be part of current runtime or we'd need to wait for next major release?
@tomkerkhove any update on this?
@jeskew - one more thing to consider while improving strong typing - would be nice to have ability to define a dictionary type, where key is string and the value...
@macieyng update the changelog
I've found a potential workaround - however it's not currently possible in bicep due to - I think - a bug: ```bicep resource vmsslb 'Microsoft.Network/loadBalancers@2021-05-01' = { name: '${vmssName}-lb' location:...
I found a working workaround but quite ugly: ```bicep resource _vmsslb 'Microsoft.Network/loadBalancers@2021-05-01' existing = { name: '${vmssName}-lb' resource frontendIpConfig 'frontendIPConfigurations' existing = { name: 'frontend' } } resource vmsslb 'Microsoft.Network/loadBalancers@2021-05-01'...
Assigning this to myself, however if someone is willing to pick this up - please write down a comment
> this is mental @4c74356b41 can you elaborate?
The limit for loadTextContent is a limit for ARM template expression as noted [here](https://learn.microsoft.com/en-us/azure/azure-resource-manager/templates/template-expressions#:~:text=A%20template%20expression%20can%27t%20exceed%2024%2C576%20characters.) As Alex pointed, loadJsonContent leverages ARM's JSON structure to "omit" the bicep compilation and put file...