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 核心診斷。