Bicep 錯誤碼 - BCP127
當您指定無效的資源裝飾專案時,就會發生此錯誤。
錯誤描述
Function <function-name> can't be used as a resource decorator.
方案
針對資源宣告使用有效的裝飾專案。 如需詳細資訊,請參閱 裝飾專案。
範例
下列範例會引發錯誤,因為 @export()
不是有效的資源裝飾專案。
@export()
resource store 'Microsoft.Storage/storageAccounts@2023-05-01' existing = {
name: uniqueString(resourceGroup().id)
}
有效的資源裝飾項目為 @description()
和 @batchSize()
。
下一步
如需 Bicep 錯誤和警告碼的詳細資訊,請參閱 Bicep 核心診斷。