【发布时间】:2022-10-20 15:42:29
【问题描述】:
如何自动格式化 azure bicep 文件以具有编写/格式化代码的通用方式 从
param instLocation array = [
'euw'
]
至
param instLocation array = ['euw']
【问题讨论】:
标签: azure arm azure-bicep
如何自动格式化 azure bicep 文件以具有编写/格式化代码的通用方式 从
param instLocation array = [
'euw'
]
至
param instLocation array = ['euw']
【问题讨论】:
标签: azure arm azure-bicep
要自动格式化 azure bicep 文件,您可以使用
az bicep format 将在下一个版本中出现,https://github.com/Azure/bicep/pull/8580
【讨论】: