Skip to content

Commit

Permalink
Merge pull request #823 from splunk/new_features
Browse files Browse the repository at this point in the history
add port 7999 to security group
  • Loading branch information
P4T12ICK authored Jul 14, 2023
2 parents 5bc193a + 6cc5076 commit 768a981
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions terraform/aws/modules/network/resources.tf
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,13 @@ resource "aws_security_group" "default" {
cidr_blocks = split(",", var.general.ip_whitelist)
}

ingress {
from_port = 7999
to_port = 7999
protocol = "tcp"
cidr_blocks = split(",", var.general.ip_whitelist)
}

ingress {
from_port = 50051
to_port = 50051
Expand Down

0 comments on commit 768a981

Please sign in to comment.