-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathalb-vm-http.tf
More file actions
232 lines (204 loc) · 6.85 KB
/
alb-vm-http.tf
File metadata and controls
232 lines (204 loc) · 6.85 KB
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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
# Infrastructure for the Yandex Application Load Balancer
#
# RU: https://yandex.cloud/ru/docs/tutorials/security/migration-from-nlb-to-alb/nlb-with-target-resource-vm/terraform
# EN: https://yandex.cloud/en/docs/tutorials/security/migration-from-nlb-to-alb/nlb-with-target-resource-vm/terraform
# Specify the following settings:
locals {
# The following settings are to be specified by the user. Change them as you wish.
domain_name = "" # Domain name of your service
network_id = "" # ID of the network where the VMs are located
# The following settings are predefined. Change them only if necessary.
network_name = "alb-network" # Network name
subnet_a_name = "alb-subnet-a" # Subnet-a name
subnet_b_name = "alb-subnet-b" # Subnet-b name
subnet_d_name = "alb-subnet-d" # Subnet-d name
security_group_name = "alb-security-group" # Security group name
static_address_name = "alb-static-address" # Static address name
target_group_name = "alb-target-group" # Target group name
backend_group_name = "alb-backend-group" # Backend group name
backend_name = "alb-backend" # Backend name
router_name = "alb-router" # HTTP router name
host_name = "alb-host" # Virtual host name
route_name = "alb-route" # Route name
alb_name = "alb" # Application Load Balancer name
listener_name = "alb-listener" # Listener name
sws_profile_name = "sws-profile" # Security profile name
}
# Network infrastructure
resource "yandex_vpc_subnet" "alb-subnet-a" {
description = "Subnet-a in the ru-central1-a availability zone for Application Load Balancer network"
name = local.subnet_a_name
zone = "ru-central1-a"
network_id = local.network_id
v4_cidr_blocks = ["10.51.0.0/16"]
}
resource "yandex_vpc_subnet" "alb-subnet-b" {
description = "Subnet-b in the ru-central1-b availability zone for Application Load Balancer network"
name = local.subnet_b_name
zone = "ru-central1-b"
network_id = local.network_id
v4_cidr_blocks = ["10.52.0.0/16"]
}
resource "yandex_vpc_subnet" "alb-subnet-d" {
description = "Subnet-d in the ru-central1-d availability zone for Application Load Balancer network"
name = local.subnet_d_name
zone = "ru-central1-d"
network_id = local.network_id
v4_cidr_blocks = ["10.53.0.0/16"]
}
resource "yandex_vpc_security_group" "alb-security-group" {
description = "Security group for the Application Load Balancer"
name = local.security_group_name
network_id = local.network_id
ingress {
description = "Ext-http"
protocol = "TCP"
v4_cidr_blocks = ["0.0.0.0/0"]
port = 80
}
ingress {
description = "Ext-https"
protocol = "TCP"
v4_cidr_blocks = ["0.0.0.0/0"]
port = 443
}
ingress {
description = "Healthchecks"
protocol = "TCP"
predefined_target = "loadbalancer_healthchecks"
port = 30080
}
egress {
description = "Allow all outgoing traffic"
protocol = "ANY"
v4_cidr_blocks = ["0.0.0.0/0"]
from_port = 0
to_port = 65535
}
}
resource "yandex_vpc_address" "static-address" {
description = "Static public IP address for the Application Load Balancer"
name = "alb-static-address"
external_ipv4_address {
zone_id = "ru-central1-a"
ddos_protection_provider = "qrator"
}
}
# Infrastructure for the Smart Web Security
resource "yandex_sws_security_profile" "sws-profile" {
description = "Security profile for the Application Load Balancer"
name = local.sws_profile_name
default_action = "ALLOW"
security_rule {
description = "Smart protection is enabled in full mode"
name = "smart-protection-rule"
dry_run = true
priority = 999900
smart_protection {
mode = "FULL"
}
}
}
# Infrastructure for the Application Load Balancer
resource "yandex_alb_target_group" "alb-target-group" {
description = "Target group for the Application Load Balancer"
name = local.target_group_name
target {
subnet_id = "<идентификатор_подсети>"
ip_address = "<внутренний_IP-адрес_ВМ_1>"
}
target {
subnet_id = "<идентификатор_подсети>"
ip_address = "<внутренний_IP-адрес_ВМ_2>"
}
target {
subnet_id = "<идентификатор_подсети>"
ip_address = "<внутренний_IP-адрес_ВМ_N>"
}
}
resource "yandex_alb_backend_group" "alb-backend-group" {
description = "Backend group for the Application Load Balancer"
name = local.backend_group_name
# session_affinity {
# connection {
# source_ip = true
# }
# }
http_backend {
name = local.backend_name
target_group_ids = [yandex_alb_target_group.alb-target-group.id]
port = 80
healthcheck {
timeout = "1s"
interval = "1s"
healthy_threshold = 2
unhealthy_threshold = 3
healthcheck_port = 80
http_healthcheck {
path = "/"
}
}
}
}
resource "yandex_alb_http_router" "alb-router" {
description = "HTTP router for the Application Load Balancer"
name = local.router_name
}
# Virtual host for the HTTP router
resource "yandex_alb_virtual_host" "alb-host" {
name = local.host_name
authority = [local.domain_name]
http_router_id = yandex_alb_http_router.alb-router.id
route {
name = local.route_name
http_route {
http_match {
path {
prefix = "/"
}
}
http_route_action {
backend_group_id = yandex_alb_backend_group.alb-backend-group.id
}
}
}
route_options {
security_profile_id = yandex_sws_security_profile.sws-profile.id
}
}
resource "yandex_alb_load_balancer" "alb" {
description = "Application Load Balancer"
name = local.alb_name
network_id = local.network_id
security_group_ids = [yandex_vpc_security_group.alb-security-group.id]
allocation_policy {
location {
zone_id = "ru-central1-a"
subnet_id = yandex_vpc_subnet.alb-subnet-a.id
}
location {
zone_id = "ru-central1-b"
subnet_id = yandex_vpc_subnet.alb-subnet-b.id
}
location {
zone_id = "ru-central1-d"
subnet_id = yandex_vpc_subnet.alb-subnet-d.id
}
}
listener {
name = local.listener_name
endpoint {
address {
external_ipv4_address {
address = yandex_vpc_address.static-address.external_ipv4_address[0].address
}
}
ports = [80]
}
http {
handler {
http_router_id = yandex_alb_http_router.alb-router.id
}
}
}
}