Skip to content

Commit

Permalink
Merge pull request #367 from equinix/CXF-75972
Browse files Browse the repository at this point in the history
CXF-75972 Changing link_protocol attributes for port2serviceprofiles
  • Loading branch information
ctreatma authored Aug 29, 2023
2 parents 5f69208 + e190ba4 commit 9eb6c28
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 8 deletions.
6 changes: 4 additions & 2 deletions examples/connectivity/v4/port2serviceprofileprivate/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ resource "equinix_fabric_connection" "sp-private-qinq" {
uuid= data.equinix_fabric_ports.aside.data.0.uuid
}
link_protocol {
vlan_s_tag= var.aside_link_protocol_stag
type= var.aside_link_protocol_type
vlan_tag= var.aside_link_protocol_tag
}
}
}
Expand All @@ -57,7 +58,8 @@ resource "equinix_fabric_connection" "sp-private-qinq" {
uuid= data.equinix_fabric_service_profiles.spprivate.data.0.uuid
}
link_protocol {
vlan_s_tag= var.aside_link_protocol_stag
type= var.zside_link_protocol_type
vlan_tag= var.zside_link_protocol_tag
}
location {
metro_code= var.zside_location
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,11 @@ notifications_emails = ["[email protected]"]
bandwidth = 50
purchase_order_number = "1-323292"
aside_ap_type = "COLO"
aside_link_protocol_stag = "2019"
aside_link_protocol_type = "DOT1Q"
aside_link_protocol_tag = "2019"
zside_ap_type = "SP"
zside_link_protocol_type = "DOT1Q"
zside_link_protocol_tag = "1457"
zside_ap_profile_type = "L2_PROFILE"
zside_location = "DA"
fabric_sp_name = "Equinix Direct Connect - Private"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,11 @@ variable "bandwidth" {}
variable "redundancy" {}
variable "purchase_order_number" {}
variable "aside_ap_type" {}
variable "aside_link_protocol_stag" {}
variable "aside_link_protocol_type" {}
variable "aside_link_protocol_tag" {}
variable "zside_ap_type" {}
variable "zside_link_protocol_type" {}
variable "zside_link_protocol_tag" {}
variable "zside_ap_profile_type" {}
variable "zside_location" {}
variable "fabric_sp_name" {}
Expand Down
2 changes: 1 addition & 1 deletion examples/connectivity/v4/port2serviceprofilepublic/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ resource "equinix_fabric_connection" "port2profile" {
}
link_protocol {
type= var.aside_link_protocol_type
vlan_s_tag= var.aside_link_protocol_stag
vlan_tag= var.aside_link_protocol_tag
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ redundancy = "PRIMARY"
purchase_order_number = "1-323292"
aside_ap_type = "COLO"
aside_port_uuid = "c4d9350e-783c-83cd-1ce0-306a5c00a600"
aside_link_protocol_type = "QINQ"
aside_link_protocol_stag = "2019"
aside_link_protocol_type = "DOT1Q"
aside_link_protocol_tag = "2019"
zside_ap_type = "SP"
zside_ap_profile_type = "L2_PROFILE"
zside_ap_profile_uuid = "bfb74121-7e2c-4f74-99b3-69cdafb03b41"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ variable "purchase_order_number" {}
variable "aside_ap_type" {}
variable "aside_port_uuid" {}
variable "aside_link_protocol_type" {}
variable "aside_link_protocol_stag" {}
variable "aside_link_protocol_tag" {}
variable "zside_ap_type" {}
variable "zside_ap_profile_type" {}
variable "zside_ap_profile_uuid" {}
Expand Down

0 comments on commit 9eb6c28

Please sign in to comment.