共用方式為


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