Skip to content

Commit 0205ae2

Browse files
committed
chore: update qlik sg ingress rules
1 parent 7972666 commit 0205ae2

File tree

1 file changed

+12
-14
lines changed

1 file changed

+12
-14
lines changed

terraform/modules/qlik-sense-server/10-aws-ec2.tf

Lines changed: 12 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -75,32 +75,30 @@ resource "aws_security_group" "qlik_sense" {
7575
from_port = 139
7676
to_port = 139
7777
protocol = "tcp"
78-
cidr_blocks = ["10.151.11.27/32"] # Replace with specific IP ranges for better security
78+
cidr_blocks = ["10.151.11.27/32"] # Replace with specific IP ranges for better security
7979
}
8080

8181
ingress {
8282
from_port = 445
8383
to_port = 445
8484
protocol = "tcp"
85-
cidr_blocks = ["10.151.11.27/32"] # Replace with specific IP ranges for better security
85+
cidr_blocks = ["10.151.11.27/32"] # Replace with specific IP ranges for better security
8686
}
8787

8888
ingress {
89-
description = "Allow inbound HTTP traffic"
90-
from_port = 80
91-
to_port = 80
92-
protocol = "tcp"
93-
cidr_blocks = ["0.0.0.0/0"]
94-
ipv6_cidr_blocks = ["::/0"]
89+
description = "Allow inbound HTTP traffic"
90+
from_port = 80
91+
to_port = 80
92+
protocol = "tcp"
93+
cidr_blocks = ["192.168.20.13/32"]
9594
}
9695

9796
ingress {
98-
description = "Allow inbound HTTPS traffic"
99-
from_port = 443
100-
to_port = 443
101-
protocol = "tcp"
102-
cidr_blocks = ["0.0.0.0/0"]
103-
ipv6_cidr_blocks = ["::/0"]
97+
description = "Allow inbound HTTPS traffic"
98+
from_port = 443
99+
to_port = 443
100+
protocol = "tcp"
101+
cidr_blocks = ["192.168.20.13/32"]
104102
}
105103

106104
ingress {

0 commit comments

Comments
 (0)