你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
Bicep 错误代码 - BCP294
错误说明
Type unions must be reducible to a single ARM type (such as 'string', 'int', or 'bool').
示例
以下示例引发错误,因为联合类型中使用了不同类型的类型:
type foo = 'a' | 1
可以通过对联合类型定义使用单个数据类型来修复错误:
type foo = 'a' | 'b'
后续步骤
有关 Bicep 错误和警告代码的详细信息,请参阅 Bicep 核心诊断。