gpt4 book ai didi

list - 获取 Terraform 中列表的总数

转载 作者:行者123 更新时间:2023-11-30 23:45:56 24 4
gpt4 key购买 nike

我想知道是否有可能在 terraform 中获取列表的总数,我查看了 tf 网站,仅使用 count.index 没有看到任何关于总数的信息。

示例列表

var "testList"
type = "list"

default [
{
type = "test1"
},
{
type = "test2"
}
]

所以这里我想得到2作为teSTList的总数

谢谢

最佳答案

您可以使用 terraform 内置函数 length() 来获取计数。

count = "${length(var.testList)}"

详情请查看terraform文档:

terraform length list

关于list - 获取 Terraform 中列表的总数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49394388/

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