Skip to content
This repository has been archived by the owner on Sep 16, 2020. It is now read-only.

Commit

Permalink
readability updates
Browse files Browse the repository at this point in the history
- sort firewall ports numerically
- correct manifest property for port 8082
  • Loading branch information
markstokan authored and ciphercules committed Aug 28, 2019
1 parent 83ae3eb commit e62174d
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions modules/isolation_segment/firewalls.tf
Original file line number Diff line number Diff line change
Expand Up @@ -116,17 +116,14 @@ resource "google_compute_firewall" "cf-isoseg-egress" {
protocol = "tcp"

ports = [
"4222", # bosh.nats.port
"25250", # bosh.blobstore.port
"25777", # bosh.registry.port
"3000", # routing-api.routing_api.port
"3457", # loggregator_agent.listening_port
"4003", # vxlan-policy-agent.policy_server.internal_listen_port
"4103", # silk-controller.listen_port
"4222", # nats.nats.port
"4443", # blobstore.blobstore.tls.port
"8080", # blobstore.blobstore.port, file_server.diego.file_server.listen_addr (diego_brain instance group, PAS)
"8082", # reverse_log_proxy_port
"8082", # reverse_log_proxy.egress.port
"8084", # file_server.diego.file_server.listen_addr (control instance group, SF PAS)
"8300", # default consul server port
"8301", # default consul serf lan port
Expand All @@ -142,6 +139,8 @@ resource "google_compute_firewall" "cf-isoseg-egress" {
"9023", # cloud_controller_ng.cc.tls_port
"9090", # cc_uploader.http_port
"9091", # cc_uploader.https_port
"25250", # bosh.blobstore.port
"25777", # bosh.registry.port
]
}

Expand Down

0 comments on commit e62174d

Please sign in to comment.