Bicep 错误/警告代码 - BCP089
当属性名称似乎存在拼写错误时,将发生此错误/警告。
错误/警告说明
The property <property-name> is not allowed on objects of type <resource-type/type-definition>. Did you mean <property-name>?
解决方案
修复拼写错误。
示例
下面的示例会引发错误,因为属性名称 named 似乎存在拼写错误。
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 警告和错误。