line breaks in expressions? #2765
-
Is there any plan to support line breaks in expressions ? for example var test1 = guid('hello','world') I would like to be able to do the following var test2 = guid(
'hello',
'world'
) Here is an example of why... when doing role assignments I build up an object that I use for reporting and troubleshooting. I want to either concat some strings together for friendly output AND use the GUID method to create a globally unique guid for any particular RBAC Role Assignment. * This is just one example. The output json would look something like this... so if I ever get errors I can figure out which role assignment or guid etc is incorrect. Currently the Bicep code looks like this. . . so I would like to be able to make this user friendly via formatting over multi line, similar to the ARM template JSON above. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
looks like this topic maybe covered here #146 ? This is rather amusing :) var hello = guid('hello', /*
*/ 'world') |
Beta Was this translation helpful? Give feedback.
looks like this topic maybe covered here #146 ?
This is rather amusing :)