Bicep 错误代码 - BCP288
当指定的名称是一种类型,但正用作值时,会发生此错误。
错误说明
<name> refers to a type but is being used as a value here.
解决方案
使用值的名称。
示例
以下示例会引发错误,因为 bar 是用户定义的数据类型的名称,而不是值:
type bar = 'white'
var foo = bar
可以通过将值分配给变量 foo 来修复此错误:
var bar = 'white'
var foo = bar
后续步骤
有关 Bicep 错误和警告代码的详细信息,请参阅 Bicep 核心诊断。