在Terraform中我可以使用:
name = "${var.names["apple"])"
查找字符串" apple"在var.names
。
但是,这种语法在大多数编程语言中会破坏,因为它会尝试解析"${var.names["
然后apple
然后"])"
。
我查了相关文档,但没找到任何内容。有没有细节?
我读过:
https://www.terraform.io/docs/configuration/syntax.html 和 https://www.terraform.io/docs/configuration/interpolation.html
最后一个链接简要给出了一个例子
template = "${file("templates/web_init.tpl")}"
但没有解释。