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
The delimiter is calculated with the coalesce function, which considers and empty string and a null string as the same thing. This prevents the delimiter from being set as "", which is useful for certain resources. For example, Azure storage account container names can only contain lowercase letters and numbers.
I'm not sure of the best way to fix this, other than add a flag that says to not use the delimiter. The regex is applied before the delimiter is added. I could submit a PR for a new flag if that would be acceptable.
The text was updated successfully, but these errors were encountered:
The delimiter is calculated with the
coalesce
function, which considers and empty string and a null string as the same thing. This prevents the delimiter from being set as "", which is useful for certain resources. For example, Azure storage account container names can only contain lowercase letters and numbers.I'm not sure of the best way to fix this, other than add a flag that says to not use the delimiter. The regex is applied before the delimiter is added. I could submit a PR for a new flag if that would be acceptable.
The text was updated successfully, but these errors were encountered: