How to find the vsphere_network name?

I am trying to create virtual machine in VMware Vsphere using terraform and getting error
`Error: error fetching network: network ‘Ethernet 2’ not found

on main.tf line 24, in data “vsphere_network” “network”:
24: data “vsphere_network” “network” {`

How to find the name of the network that needs to be provided in the network_interface section?
network_interface {
network_id = data.vsphere_network.network.id
}