在一个资源语句中循环遍历字典列表和列表

Looping through a list of dict and a list within one resource statement

变量

ip_set = [
  {
    name: "test-ip-set-1"
    ip_list: ["10.0.0.1/32", "10.0.0.1/32"]
  }
]

我想遍历 ip_set 变量并根据 ip_set 的长度创建 IP 集并在该字典 ip_list 中循环

例如

resource "aws_waf_ipset" "ipset" {
  for_each = {for name, ip_list in var.ip_set: name => ip_list}
  name        = each.value.name

  ip_set_descriptors {
    type  = "IPV4"
    value = each.value.ip_list[ip_list_element_1]
  }
  ip_set_descriptors {
    type  = "IPV4"
    value = each.value.ip_list[ip_list_element_2]
  }

错误

如果我这样做

  ip_set_descriptors {
    type  = "IPV4"
    value = tostring(each.value[*].ip_list)
  }

我明白了

Invalid value for "v" parameter: cannot convert tuple to string.

仅供参考。 ip_set_descriptors 中的值需要是一个字符串,我不知道那里有多少个元素

您可以使用 dynamic blocks:

resource "aws_waf_ipset" "ipset" {

  for_each = {for name, ip_list in var.ip_set: name => ip_list}
  name        = each.value.name

  dynamic "ip_set_descriptors" {
    for_each = each.value.ip_list
    content {
      type  = "IPV4"
      value = ip_set_descriptors.value
  }
}