Assign IP address per interface

I deploy a VM from my template from my local PC such as:

ovf_deploy {
    local_ovf_path       = var.ovf_source_file
    disk_provisioning    = "thin"
    ip_protocol          = "IPV4"
    ip_allocation_policy = "STATIC_MANUAL"
    ovf_network_map = {
      "ESX-port-1" = data.vsphere_network.network.id
      "ESX-port-2" = data.vsphere_network.network.id
      "ESX-port-3" = data.vsphere_network.network.id
    }
  }

How can I assign IP per interface?

Before this issue, I used clone {customize { network_interface{} } }
But with ovf_deploy I can’t assign IP address.