Azure – How to omit a storage policy rule based on a condition in bicep?
I have this bicep code to apply two rules to a storage account policy on an Azure Storage Account: @description('Name of the storage account') param name string @description('Number of days before moving from Hot to Cool storage') param hotToCoolDays int…