Bicep 错误代码 - BCP153
如果你有一个修饰器,而该修饰器的后面缺失原本该有的 resource
或 module
声明,则会出现此错误。
错误说明
Expected a resource or module declaration after the decorator.
解决方案
示例
以下示例会引发错误,因为缺失类型声明。
@batchSize()
可通过添加模块或资源声明来修复此错误。
@batchSize(3)
module storage 'br/public:avm/res/storage/storage-account:0.11.1' = [for storageName in storageAccounts: {
name: 'myStorage'
params: {
name: 'store${resourceGroup().name}'
}
}]
后续步骤
有关 Bicep 错误和警告代码的详细信息,请参阅 Bicep 核心诊断。