Bicep 错误代码 - BCP132
如果有一个修饰器,但后面没有声明,则会出现此错误。
错误说明
Expected a declaration after the decorator.
解决方案
在修饰器后面添加适当的类型声明。
示例
下面的示例会引发错误,因为在修饰器之后没有类型声明。
@description()
可通过删除修饰器,或在修饰器后面添加声明来修复错误。
@description('Declare a existing storage account.')
resource store 'Microsoft.Storage/storageAccounts@2023-05-01' existing = {
name: 'mystore'
}
有关有效修饰器的列表,请参阅修饰器。
后续步骤
有关 Bicep 错误和警告代码的详细信息,请参阅 Bicep 核心诊断。