forked from zigbee-alliance/distributed-compliance-ledger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathelb.tf
162 lines (129 loc) · 4.13 KB
/
elb.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
resource "aws_lb" "this_nlb" {
name = "observers-network-lb"
internal = false
load_balancer_type = "network"
subnets = module.this_vpc.public_subnets
enable_cross_zone_load_balancing = true
# enable_deletion_protection = true
tags = {
Name = "Observers NLB"
}
}
locals {
tls_cert_arn = var.enable_tls ? aws_acm_certificate_validation.this_acm_cert_validation[0].certificate_arn : ""
ssl_policy = "ELBSecurityPolicy-TLS13-1-2-2021-06" # TLS 1.3 (recommended)
}
resource "aws_lb_listener" "rest" {
count = local.enable_tls ? 0 : 1
load_balancer_arn = aws_lb.this_nlb.arn
port = "80"
protocol = "TCP"
default_action {
type = "forward"
target_group_arn = aws_lb_target_group.rest.arn
}
}
resource "aws_lb_listener" "grpc" {
count = local.enable_tls ? 0 : 1
load_balancer_arn = aws_lb.this_nlb.arn
port = "9090"
protocol = "TCP"
default_action {
type = "forward"
target_group_arn = aws_lb_target_group.grpc.arn
}
}
resource "aws_lb_listener" "rpc" {
count = local.enable_tls ? 0 : 1
load_balancer_arn = aws_lb.this_nlb.arn
port = "8080"
protocol = "TCP"
default_action {
type = "forward"
target_group_arn = aws_lb_target_group.rpc.arn
}
}
resource "aws_lb_listener" "tls_rest" {
count = local.enable_tls ? 1 : 0
load_balancer_arn = aws_lb.this_nlb.arn
port = "443"
protocol = "TLS"
certificate_arn = local.tls_cert_arn
ssl_policy = local.ssl_policy
default_action {
type = "forward"
target_group_arn = aws_lb_target_group.rest.arn
}
depends_on = [
aws_acm_certificate_validation.this_acm_cert_validation[0]
]
}
resource "aws_lb_listener" "tls_grpc" {
count = local.enable_tls ? 1 : 0
load_balancer_arn = aws_lb.this_nlb.arn
port = "8443"
protocol = "TLS"
certificate_arn = local.tls_cert_arn
ssl_policy = local.ssl_policy
default_action {
type = "forward"
target_group_arn = aws_lb_target_group.grpc.arn
}
depends_on = [
aws_acm_certificate_validation.this_acm_cert_validation[0]
]
}
resource "aws_lb_listener" "tls_rpc" {
count = local.enable_tls ? 1 : 0
load_balancer_arn = aws_lb.this_nlb.arn
port = "26657"
protocol = "TLS"
certificate_arn = local.tls_cert_arn
ssl_policy = local.ssl_policy
default_action {
type = "forward"
target_group_arn = aws_lb_target_group.rpc.arn
}
depends_on = [
aws_acm_certificate_validation.this_acm_cert_validation[0]
]
}
resource "aws_lb_target_group" "rest" {
name = "observers-rest-target-group"
port = 1317
protocol = "TCP"
vpc_id = module.this_vpc.vpc_id
preserve_client_ip = false
}
resource "aws_lb_target_group" "grpc" {
name = "observers-grpc-target-group"
port = 9090
protocol = "TCP"
vpc_id = module.this_vpc.vpc_id
preserve_client_ip = false
}
resource "aws_lb_target_group" "rpc" {
name = "observers-rpc-target-group"
port = 26657
protocol = "TCP"
vpc_id = module.this_vpc.vpc_id
preserve_client_ip = false
}
resource "aws_lb_target_group_attachment" "rest_targets" {
count = length(aws_instance.this_nodes)
target_group_arn = aws_lb_target_group.rest.arn
target_id = aws_instance.this_nodes[count.index].id
port = 80
}
resource "aws_lb_target_group_attachment" "grpc_targets" {
count = length(aws_instance.this_nodes)
target_group_arn = aws_lb_target_group.grpc.arn
target_id = aws_instance.this_nodes[count.index].id
port = 9090
}
resource "aws_lb_target_group_attachment" "rpc_targets" {
count = length(aws_instance.this_nodes)
target_group_arn = aws_lb_target_group.rpc.arn
target_id = aws_instance.this_nodes[count.index].id
port = 26657
}