Can i remove case sensitivity in my bicep file? #6528
-
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 8 replies
-
yaml pipelines also support the same features for allowed + default values. - name: Task
displayName: Helm Task
type: string
default: upgrade
values:
- install
- upgrade |
Beta Was this translation helpful? Give feedback.
-
The order of code does not dictate the sequence of events that will be executed. Outputs are processed last, so that's why I think you are perceiving it is not doing anything. If the deployment ran, you would see a deployment output, all lowercase as expected. Instead, you can use a Can you share the full code you are running when the error occurs? My guess is you need something like this: param region string
var lowercasedRegion = toLower(region)
resource foo 'microsoft.foo/bar@2022-04-01' = {
...
location: lowercasedRegion
} |
Beta Was this translation helpful? Give feedback.
yaml pipelines also support the same features for allowed + default values.