Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Oct 25, 2021
1 parent 04edd3c commit 453f54a
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 20 deletions.
14 changes: 6 additions & 8 deletions common/ports.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ locals {

port_map = {
"external" = []
"module_ports" = p_list1
"ingress_ports" = p_list2
"ingress_map" = p_list3
"module_ports" = local.p_list1
"ingress_ports" = local.p_list2
"ingress_map" = local.p_list3
}

# self ports
Expand All @@ -27,9 +27,9 @@ locals {
sp_list3 = local._defaults["self_port_list"]

self_port_map = {
"ingress_ports" = sp_list1
"ingress_map" = sp_list2
"default" = sp_list3
"ingress_ports" = local.sp_list1
"ingress_map" = local.sp_list2
"default" = local.sp_list3
}
}

Expand Down Expand Up @@ -62,5 +62,3 @@ locals {
# }
#
#


12 changes: 6 additions & 6 deletions custom/ports.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ locals {

port_map = {
"external" = []
"module_ports" = p_list1
"ingress_ports" = p_list2
"ingress_map" = p_list3
"module_ports" = local.p_list1
"ingress_ports" = local.p_list2
"ingress_map" = local.p_list3
}

# self ports
Expand All @@ -27,8 +27,8 @@ locals {
sp_list3 = local._defaults["self_port_list"]

self_port_map = {
"ingress_ports" = sp_list1
"ingress_map" = sp_list2
"default" = sp_list3
"ingress_ports" = local.sp_list1
"ingress_map" = local.sp_list2
"default" = local.sp_list3
}
}
12 changes: 6 additions & 6 deletions sas/ports.tf
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ locals {

port_map = {
"external" = []
"module_ports" = p_list1
"ingress_ports" = p_list2
"ingress_map" = p_list3
"module_ports" = local.p_list1
"ingress_ports" = local.p_list2
"ingress_map" = local.p_list3
}

# self ports
Expand All @@ -59,8 +59,8 @@ locals {
sp_list3 = local._defaults["self_port_list"]

self_port_map = {
"ingress_ports" = sp_list1
"ingress_map" = sp_list2
"default" = sp_list3
"ingress_ports" = local.sp_list1
"ingress_map" = local.sp_list2
"default" = local.sp_list3
}
}

0 comments on commit 453f54a

Please sign in to comment.