Bicep 诊断代码 - BCP311
提供无效索引号时,会发生此诊断。 Bicep 中的数组的下标从零开始。 有关详细信息,请参阅 array。
说明
提供的索引值 <index-value> 对于类型 <type-name> 无效。 此类型的索引必须介于 0 和 <zero-based-tuple-index> 之间。
Level
错误
解决方案
使用正确的索引号。
示例
以下示例会引发诊断,因为索引超出界限:
var exampleArray = [
1
2
3
]
output bar int = exampleArray[3]
可使用正确的索引号修复诊断:
var exampleArray = [
1
2
3
]
output bar int = exampleArray[2]
后续步骤
有关 Bicep 诊断的详细信息,请参阅 Bicep 核心诊断。