Skip to content

Commit

Permalink
Merge pull request #87 from dasmeta/DMVP-3074
Browse files Browse the repository at this point in the history
fix(DMVP-3074): Open linkerD port for apiserver
  • Loading branch information
aghamyan44 authored Nov 20, 2023
2 parents c0c3758 + 24bd7bb commit 5dc572b
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions modules/eks/locals.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,22 @@ locals {
type = "ingress"
source_cluster_security_group = true
},
ingress_cluster_8088 = {
description = "LinkerD to node groups"
protocol = "tcp"
from_port = 8088
to_port = 8088
type = "ingress"
source_cluster_security_group = true
},
ingress_cluster_8089 = {
description = "LinkerD to node groups"
protocol = "tcp"
from_port = 8089
to_port = 8089
type = "ingress"
source_cluster_security_group = true
},
ingress_cluster_9443 = {
description = "ALB to node groups"
protocol = "tcp"
Expand Down

0 comments on commit 5dc572b

Please sign in to comment.