嗨,我正在尝试向脚本中添加copyIndex
,以便可以向其中传递VM数组。
完整脚本位于: https://pastebin.com/embed_iframe/vQyyKrYn
我得到的错误是:
is not valid: The template function 'copyIndex' is not expected at this location. The function
can only be used in a resource with copy specified.
我确实在第44行的资源中指定了copy
。我想!
任何想法,我哪里出错了,或者如何使它陷入循环中,一次遍历一个虚拟机。
预先感谢:)
答案 0 :(得分:0)
您需要连接copyIndex吗?
代替:
[parameters('vmName')[copyindex()]]
使用:
[concat(parameters('vmName'), copyIndex())]