nsxt_logical_router_downlink_port
This resource provides a means to define a downlink port on a logical router to connect a logical router to a logical switch. The result of this is to provide a default gateway to virtual machines running on the logical switch.
Example Usage
resource "nsxt_logical_router_downlink_port" "downlink_port" { description = "DP1 provisioned by Terraform" display_name = "DP1" logical_router_id = "${nsxt_logical_router.rtr1.id}" linked_logical_switch_port_id = "${nsxt_logical_port.logical_port1.id}" ip_address = "1.1.0.1/24" service_binding { target_id = "${nsxt_dhcp_relay_service.dr_service.id}" target_type = "LogicalService" } tag { scope = "color" tag = "blue" } }
Argument Reference
The following arguments are supported:
-
logical_router_id
- (Required) Identifier for logical Tier-1 router on which this port is created -
linked_logical_switch_port_id
- (Required) Identifier for port on logical switch to connect to -
ip_address
- (Required) Logical router port subnet (ip_address / prefix length) -
mac_address
- (Optional) Mac Address -
urpf_mode
- (Optional) Unicast Reverse Path Forwarding mode -
display_name
- (Optional) Display name, defaults to ID if not set. -
description
- (Optional) Description of the resource. -
tag
- (Optional) A list of scope + tag pairs to associate with this port. -
service_binding
- (Optional) A list of services for this port
Attributes Reference
In addition to arguments listed above, the following attributes are exported:
-
id
- ID of the logical switch. -
revision
- Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
Importing
An existing Logical Router Downlink Port can be imported into this resource, via the following command:
terraform import nsxt_logical_router_downlink_port.downlink_port UUID
The above command imports the logical router downlink port named downlink_port
with the NSX id UUID
.
© 2018 HashiCorpLicensed under the MPL 2.0 License.
https://www.terraform.io/docs/providers/nsxt/r/logical_router_downlink_port.html