Bicep 錯誤碼 - BCP311
當您提供無效的索引編號時,就會發生此錯誤。 Bicep 中的陣列以零為起始。 如需詳細資訊,請參閱陣列。
錯誤描述
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 核心診斷。