Bicep 錯誤碼 - BCP302
當您使用無效 的數據類型 或 使用者定義數據類型時,就會發生此錯誤。
錯誤描述
The name <type-name> is not a valid type. Please specify one of the following types: <type-names>.
方案
使用正確的數據類型或使用者定義數據類型。
範例
下列範例會引發錯誤,因為 balla
看起來像錯字:
type ball = {
name: string
color: string
}
output tennisBall balla = {
name: 'tennis'
color: 'yellow'
}
您可以修正錯誤字來修正錯誤:
type ball = {
name: string
color: string
}
output tennisBall ball = {
name: 'tennis'
color: 'yellow'
}
下一步
如需 Bicep 錯誤和警告碼的詳細資訊,請參閱 Bicep 核心診斷。