Christopher Lewis

Results 19 comments of Christopher Lewis

Adding some notes from #6624 I like the simplicity of referring to the types using the symbolic name. I like typeof rather than 'type' or 'of type' and I like...

Adding [DataCollectionRules ](https://docs.microsoft.com/en-us/azure/templates/microsoft.insights/datacollectionrules?pivots=deployment-language-bicep) as a resource that typically uses a JSON value. The [MS recommended](https://docs.microsoft.com/en-us/azure/azure-monitor/vm/vminsights-enable-resource-manager) template looks like this: ``` bicep param dcrName string //this should start with MSVMI- param...

We've got dynamic parameters in many of our scripts, and they display perfectly fine. if you'd like some test examples, I can supply them.

Some things I'm pleased with and some concerned with. The @, in general, is the most confusing aspect of Bicep to new developers and abstracting that away would be great....

Can we cover more on What-Ifs at Subscription and Management Groups and why they just don't work? https://github.com/Azure/arm-template-whatif/issues/357

A couple of comments, some which should be addressed now and something in the future. **Understanding the override characteristics would be important -** 1. does the "primary" value override an...

As a temporary workaround, I've created an Azure Deployment Script that returns a GUID of a role given its name. It's SLOW, but it does work. [BicepDeploymentScripts](https://github.com/ChristopherGLewis/BicepDeploymentScripts)

I've got a demo in GitHub of how to use DeploymentScripts in bicep - the sample uses a PowerShell script to grab a Role Definition's GUID, but with minimal effort...

Some comments here: https://github.com/Azure/bicep/pull/13900#issuecomment-2091058063

Couple of comments: 1) Contexts are the the bane of scripting. You typically set your context at the beginning of your script and go. Having the context switched out from...