Wednesday, March 2, 2022

Create NSX-T Service with Terraform

 How to create  NSX-T Service with Terraform?


resource "nsxt_policy_service" "SRV-TCP-P-22-SSH" {

  display_name = "SRV-TCP-P-22-SSH"

  l4_port_set_entry {
    display_name = "SRV-TCP-P-22-SSH"
    protocol     = "TCP"
    destination_ports = ["22"]
  }

}

No comments:

Post a Comment

NSX-T (local log in) with VIDM integration

We will explain how to log in with a local account to your NSX-T which integrated with VIDM. We integrated our NSX-T into the VIDM. We had a...