gpt4 book ai didi

azure - 部署前验证 Azure Bicep 字符串变量的长度

转载 作者:行者123 更新时间:2023-12-02 23:35:22 25 4
gpt4 key购买 nike

与如何验证 Bicep 模块输入参数(例如允许的字符串长度)类似,是否可以验证字符串变量的长度?

param input1 string
param input2 string

var combo = '${input1}${input2}'

// Validate length of 'combo' to be below or equal to 64 characters here

原因是我希望能够在飞行前验证期间捕获太长(超过 64 个字符)的资源部署名称。

最佳答案

不确定变量是否可行,但您始终可以将 combo 定义为参数并添加 maxLength decorator :

param input1 string
param input2 string

@maxLength(64)
param combo string = '${input1}${input2}'

关于azure - 部署前验证 Azure Bicep 字符串变量的长度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/73813217/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com