Bicep 錯誤/警告碼 - BCP089
當屬性名稱似乎是錯字時,就會發生此錯誤/警告。
錯誤/警告描述
The property <property-name> is not allowed on objects of type <resource-type/type-definition>. Did you mean <property-name>?
解決方案
修正錯字。
範例
下列範例會引發錯誤,因為名為的屬性名稱看起來像錯字。
resource storageAccount 'Microsoft.Storage/storageAccounts@2023-05-01' existing = {
named: 'account'
}
您可以修正錯誤字來修正錯誤:
resource storageAccount 'Microsoft.Storage/storageAccounts@2023-05-01' existing = {
name: 'account'
}
下列範例會引發錯誤,因為屬性名稱 color1 看起來像錯字。
type ball = {
name: string
color: string
}
output tennisBall ball = {
name: 'tennis'
color1: 'yellow'
}
您可以修正錯誤字來修正錯誤:
type ball = {
name: string
color: string
}
output tennisBall ball = {
name: 'tennis'
color: 'yellow'
}
下一步
如需 Bicep 錯誤和警告碼的詳細資訊,請參閱 Bicep 警告和錯誤。