-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathloadbalancer-gds.tf
35 lines (32 loc) · 1.36 KB
/
loadbalancer-gds.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# ------------------------------------------------------------------------------
# CREATE FORWARDING RULE
# ------------------------------------------------------------------------------
resource "google_compute_forwarding_rule" "neo4j-gds-node-forwarding-rule" {
count = var.gdsNodeCount
provider = google-beta
project = var.project
# If you change the name, also change in the main.tf startup script
name = "neo4j-gds-node-forwarding-rule-${var.env}-${count.index + 1}"
region = var.region
target = google_compute_target_pool.neo4j-gds-tp.self_link
load_balancing_scheme = "EXTERNAL"
all_ports = true
#ports = [7474, 7687]
ip_protocol = "TCP"
labels = {
"env" = var.env
"group" = var.labels_group
}
}
# ------------------------------------------------------------------------------
# CREATE TARGET POOL
# ------------------------------------------------------------------------------
resource "google_compute_target_pool" "neo4j-gds-tp" {
provider = google-beta
project = var.project
name = "neo4j-gds-tp-${var.env}"
region = var.region
session_affinity = "NONE"
# Instances only include Secondary (GDS) nodes
instances = google_compute_instance.neo4j-gds-gce.*.self_link
}