如何在 azure terraform 中访问模块 [NIC] 输出到另一个模块 [VM] 的元组值的类型列表

how to access type list of tuple values of module [NICs] output into another module[VM] in azure terraform

| var.nic1-id 是包含 2 个元素的元组

属性“network_interface_ids”的值不合适:元素 0:字符串 必需的。 请帮我解决这个问题!

如果 var.nic1-id 是一个列表,那么你会做:

network_interface_ids = var.nic1-id

否则,您正在创建一个列表列表,这会导致您的错误。