Bicep 錯誤碼 - BCP063
當系統嘗試在內容中尋找名稱,但找不到相符的名稱時,就會發生此錯誤。
錯誤描述
The name <name> isn't a parameter, variable, resource, or module.
方案
使用屬性宣告類型。 如需詳細資訊,請參閱 Bicep 檔案。
範例
下列範例會引發錯誤,因為 @metadata 不是正確的宣告類型:
@metadata
resource store 'Microsoft.Storage/storageAccounts@2023-05-01' existing = {
name: 'mystore'
}
您可以藉由正確宣告 metadata
來修正錯誤。
metadata description = 'create a storage account'
resource store 'Microsoft.Storage/storageAccounts@2023-05-01' existing = {
name: 'mystore'
}
如需詳細資訊,請參閱中繼資料。
下一步
如需 Bicep 錯誤和警告碼的詳細資訊,請參閱 Bicep 核心診斷。