Bicep 错误代码 - BCP311
提供无效索引号时,会发生此错误。 Bicep 中的数组的下标从零开始。 有关详细信息,请参阅 array。
错误说明
The provided index value of <index-value> isn't valid for type <type-name>. Indexes for this type must be between 0 and <zero-based-tuple-index>.
解决方案
使用正确的索引号。
示例
以下示例会引发错误,因为索引超出界限:
var exampleArray = [
1
2
3
]
output bar int = exampleArray[3]
可使用正确的索引号修复错误:
var exampleArray = [
1
2
3
]
output bar int = exampleArray[2]
后续步骤
有关 Bicep 错误和警告代码的详细信息,请参阅 Bicep 核心诊断。