Skip to content

Commit cc74c9e

Browse files
committed
Add proxy port
1 parent f7d09fa commit cc74c9e

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

digital-ocean/firewall.tf

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,12 @@ resource "digitalocean_firewall" "traffic-ingress" {
2121
source_addresses = ["0.0.0.0/0", "::/0"]
2222
}
2323

24+
inbound_rule {
25+
protocol = "tcp"
26+
port_range = "3128"
27+
source_addresses = ["0.0.0.0/0", "::/0"]
28+
}
29+
2430
inbound_rule {
2531
protocol = "tcp"
2632
port_range = "8080"

gcp/firewall.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ resource "google_compute_firewall" "traffic-ingress" {
44

55
allow {
66
protocol = "tcp"
7-
ports = ["22","8080","80","443"]
7+
ports = ["22","8080","80","443","3128"]
88
}
99

1010
source_ranges = ["0.0.0.0/0"]

0 commit comments

Comments
 (0)