-
Notifications
You must be signed in to change notification settings - Fork 753
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Best practices for Bicep #446
Comments
wondering if we can combine this with #443 |
Some of the formatting best practices can be captured in a formatter as well (#220). |
Related to #441 |
I think this is also related to #428. Things like always using camelCase for identifier names and removing unused parameters and variables can be linter rules and can be auto fixed. |
To throw in my thought, it should be PascalCase for parameters and camelCase for variables, both to easily distinguish between the two, and because using tools like new-azvmdeployment make dynamic parameters based on the parameters, so they will look more "powershell-like" if they are PascalCase. |
We have this doc, which may or may not go far enough: https://github.com/Azure/bicep/blob/main/docs/arm2bicep.md @slavizh / @JustinGrote - can you take a look and let me know what is missing? |
@alex-frankel this request is less around "how to convert from arm to bicep" and more about best practices for templates that are typically open to interpretation. Examples:
For example, the current document just recommends "use consistent casing", it should probably be expounded into a default recommendation, but of course people can do whatever they want, it would just be a recommendation that would probably become a de-facto standard. There is probably a minimal amount of this stuff to cover since Bicep mostly takes the 'one and only one right way to do it' approach similar to Python and unlike Powershell :) |
Can the scope of this work also include best practices for particular resource types, like |
The intent of the work item is best practices for writing Bicep code so the code when written by different people have some common similarity. The above is proposal for best practices for deploying Azure services so it is not related to Bicep. The above is probably for documents like CAF. |
We now have this best practices doc - can folks take a look? Any enhancements/changes can be provided through the feedback channels provide in ms docs. Going to close this thread in the meantime, but feel free to continue the discussion here: |
Is your feature request related to a problem? Please describe.
As I see discussions like #410 may be it is good to setup some best practices for writing bicep code in advance and not be the wild west like in ARM Templates. For example camelCase usage for parameters and variables, etc. Of course anyone will be free to adopt or not these. And of course they should not be too restrictive so if you want to adopt them you do not have to make big effort.
The text was updated successfully, but these errors were encountered: