-1

Terraform を使用してセキュリティ グループをネットワーク インターフェイスにアタッチするコードを以下に記述しました。

resource "azurerm_network_interface_security_group_association" "attach_Nic_Nsg" {
     count                     = 2
     network_interface_id      = "${azurerm_network_interface.network_interface[count.index].id}"
     network_security_group_id = module.security_group.security_group_id
}

Terraform プランを実行すると、エラーが発生します。

ここに画像の説明を入力

複数の Nic のネットワーク セキュリティ グループをアタッチする方法は?

4

1 に答える 1