Terraform 创建列表

Terraform create list

我尝试将我的 coturn 服务器的所有浮动 ip 放在一个 ansible 清单中。

resource "local_file" "hosts_cfg" {
  content = templatefile("${path.module}/templates/hosts.tpl",
    {
      coturn = openstack_compute_floatingip_associate_v2.coturn[*].floating_ip
    }
  )
  filename = "../ansible/inventory/hosts.cfg"
}

错误:该对象没有名为“floating_ip”的属性。

resource "local_file" "hosts_cfg" {
  content = templatefile("${path.module}/templates/hosts.tpl",
    {
      coturn = openstack_compute_floatingip_associate_v2.coturn["coturn-1"].floating_ip
    }
  )
  filename = "../ansible/inventory/hosts.cfg"
}

有效,但仅适用于一个实例。

我的模板文件。

[coturn]
%{ for ip in coturn ~}
${ip}
%{ endfor ~}

我的openstack_compute_floatingip_associate_v2定义。

resource "openstack_compute_floatingip_associate_v2" "coturn" {
  for_each = var.coturn_instance_names
  floating_ip = openstack_networking_floatingip_v2.coturn[each.key].address
  instance_id = openstack_compute_instance_v2.coturn[each.key].id
}

这不是我问题的答案,但解决了问题。
我目前使用这个配置,从 zigarn 提到。

resource "local_file" "hosts_cfg" {
  content = templatefile("${path.module}/templates/hosts.tpl",
    {
      coturn = openstack_compute_floatingip_associate_v2.coturn
    }
  )
  filename = "../ansible/inventory/hosts.ini"
}
[coturn]
%{ for instance in coturn ~}
${instance.floating_ip}
%{ endfor ~}

我还是不知道,为什么会这样(link)

kafka_processors = aws_instance.kafka_processor.*.public_ip

但这不

coturn = openstack_compute_floatingip_associate_v2.coturn.*.floating_ip