Bicep 诊断代码 - BCP089
当属性名称似乎存在拼写错误时,将发生此诊断。
说明
不允许在 <resource-type/type-definition> 类型的对象上使用属性 <property-name>。 你指的是否是 <property-name>?
Level
警告/错误
解决方案
修复拼写错误。
示例
下面的示例会引发诊断,因为属性名称 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 核心诊断。