You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
module"nsxt_logical_router_link_port_on_tier0" {
source="./modules/nsxt/r/nsxt_logical_router_link_port_on_tier0"# description - (optional) is a type of stringdescription=null# display_name - (optional) is a type of stringdisplay_name=null# logical_router_id - (required) is a type of stringlogical_router_id=nulltag=[{
scope =null
tag =null
}]
}
variable"description" {
description="(optional) - Description of this resource"type=stringdefault=null
}
variable"display_name" {
description="(optional) - The display name of this resource. Defaults to ID if not set"type=stringdefault=null
}
variable"logical_router_id" {
description="(required) - Identifier for logical router on which this port is created"type=string
}
variable"tag" {
description="nested block: NestingSet, min items: 0, max items: 0"type=set(object(
{
scope =string
tag =string
}
))
default=[]
}
resource"nsxt_logical_router_link_port_on_tier0""this" {
# description - (optional) is a type of stringdescription=var.description# display_name - (optional) is a type of stringdisplay_name=var.display_name# logical_router_id - (required) is a type of stringlogical_router_id=var.logical_router_iddynamic"tag" {
for_each=var.tagcontent {
# scope - (optional) is a type of stringscope=tag.value["scope"]
# tag - (optional) is a type of stringtag=tag.value["tag"]
}
}
}