Mikolaj Mackowiak
Mikolaj Mackowiak
@alex-frankel, @bmoore-msft: I think there's a need for a method to check if an AKS cluster exists. When you deploy for the first time following template: ```bicep resource aksCluster 'Microsoft.ContainerService/managedClusters@2021-10-01'...
In AKS after cluster is created, pools indeed does have a different lifecycle, but AKS to run requires at least one agentpool. In terraform, it's designed in a way that...
It's not just adding decorator, but enabling this in RM itself. Currently it seems it's not supported: https://docs.microsoft.com/en-us/azure/azure-resource-manager/templates/template-syntax#outputs: > If you specify **securestring** for the output type, the value isn't...
👍🏻 same here. I assume it's because Azure CLI is waiting for installer to finish - so the python.exe is still running. So either az cli installer should not require...
Until a CDN is set you could use my docker image miqm/bicep-cli. Although unlike azure-cli it's based on debian not alpine, it has pre-downloaded latest bicep cli. So you shouldn't...
You can always run az bicep install after installing the cli. I do this in my bicep-cli image. Although it would be best if cli docker image came with bicep...
@Agger1995 - as an intermediate solution you can use https://hub.docker.com/r/miqm/bicep-cli image (however as it's on dockerhub it might be affected with docker hub limits). Some solution would be to pre-install...
Adding some technical context: Here https://github.com/Azure/bicep/blob/57854097106ceb4c6f24f6b0d023001841f3c03e/src/Bicep.Core/Emit/ExpressionEmitter.cs#L361 we’d need to special case ternary syntax and use emit with value only on expressions that are not conditional or key vault reference. And...
A question to people watching this issue. Currently, when we use `getSecret` not directly on module param a following message is shown: `Function "getSecret" is not valid at this location....