-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathload_balancer.tf
72 lines (63 loc) · 2.45 KB
/
load_balancer.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
resource "azurerm_lb" "scale_set_lb" {
location = var.location
name = var.load_balancer_name
resource_group_name = var.resource_group_name
sku = "Standard"
frontend_ip_configuration {
name = var.lb_management_frontend_ip_config_name
subnet_id = var.management_subnet_id
}
frontend_ip_configuration {
name = var.lb_monitoring_frontend_ip_config_name
subnet_id = var.monitoring_subnet_id
}
tags = var.tags
}
resource "azurerm_lb_backend_address_pool" "management_pool" {
loadbalancer_id = azurerm_lb.scale_set_lb.id
name = var.lb_mgmt_backend_address_pool_name
}
resource "azurerm_lb_probe" "mgmt_sensor_health_check_probe" {
loadbalancer_id = azurerm_lb.scale_set_lb.id
name = var.lb_management_probe_name
port = 22
protocol = "Tcp"
}
resource "azurerm_lb_rule" "management_lb_rule" {
name = var.lb_ssh_rule_name
loadbalancer_id = azurerm_lb.scale_set_lb.id
frontend_ip_configuration_name = azurerm_lb.scale_set_lb.frontend_ip_configuration[0].name
protocol = "Tcp"
backend_port = 22
frontend_port = 22
backend_address_pool_ids = [
azurerm_lb_backend_address_pool.management_pool.id
]
probe_id = azurerm_lb_probe.mgmt_sensor_health_check_probe.id
}
resource "azurerm_lb_backend_address_pool" "monitoring_pool" {
loadbalancer_id = azurerm_lb.scale_set_lb.id
name = var.lb_mon_backend_address_pool_name
}
resource "azurerm_lb_probe" "sensor_health_check_probe" {
loadbalancer_id = azurerm_lb.scale_set_lb.id
name = var.lb_monitoring_probe_name
port = local.monitoring_health_check_port
request_path = "/api/system/healthcheck"
protocol = "Http"
interval_in_seconds = 15
number_of_probes = 3
probe_threshold = 10
}
resource "azurerm_lb_rule" "monitoring_vxlan_lb_rule" {
loadbalancer_id = azurerm_lb.scale_set_lb.id
name = var.lb_vxlan_rule_name
protocol = "Udp"
backend_port = 4789
frontend_port = 4789
frontend_ip_configuration_name = azurerm_lb.scale_set_lb.frontend_ip_configuration[1].name
backend_address_pool_ids = [
azurerm_lb_backend_address_pool.monitoring_pool.id
]
probe_id = azurerm_lb_probe.sensor_health_check_probe.id
}