You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Also needs if() as discovered while testing #770 against:
@allowed(['light', 'dark'])
@description('Light or dark color mode')
// TODO: Teach DSC how to use Bicep param filesparamcolorModestring = 'light'varvalueData = colorMode == 'light' ? 1 : 0
The ARM file ends up with [if(equals(parameters('colorMode'), 'light'), 1, 0)].
Summary of the new feature / enhancement
Need
equals()
andformat()
functions implementedProposed technical implementation details (optional)
No response
The text was updated successfully, but these errors were encountered: