forked from oracle-quickstart/oci-arch-web-ha
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlb.tf
80 lines (67 loc) · 2.43 KB
/
lb.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
## Copyright © 2020, Oracle and/or its affiliates.
## All rights reserved. The Universal Permissive License (UPL), Version 1.0 as shown at http://oss.oracle.com/licenses/upl
locals {
is_flexible_lb_shape = var.lb_shape == "flexible" ? true : false
}
resource "oci_load_balancer" "lb1" {
shape = var.lb_shape
lifecycle {
ignore_changes = [ defined_tags["Oracle-Tags.CreatedBy"], defined_tags["Oracle-Tags.CreatedOn"] ]
}
dynamic "shape_details" {
for_each = local.is_flexible_lb_shape ? [1] : []
content {
minimum_bandwidth_in_mbps = var.flex_lb_min_shape
maximum_bandwidth_in_mbps = var.flex_lb_max_shape
}
}
compartment_id = var.compartment_ocid
subnet_ids = [
oci_core_subnet.subnet_1.id,
]
defined_tags = {"${oci_identity_tag_namespace.ArchitectureCenterTagNamespace.name}.${oci_identity_tag.ArchitectureCenterTag.name}" = var.release }
display_name = "load-balancer"
network_security_group_ids = [oci_core_network_security_group.LBSecurityGroup.id]
}
resource "oci_load_balancer_backend_set" "lb-bes1" {
name = "lb-bes1"
load_balancer_id = oci_load_balancer.lb1.id
policy = "ROUND_ROBIN"
health_checker {
port = "5000"
protocol = "HTTP"
response_body_regex = ".*"
url_path = "/"
interval_ms = "10000"
return_code = "200"
timeout_in_millis = "3000"
retries = "3"
}
}
resource "oci_load_balancer_listener" "lb-listener1" {
load_balancer_id = oci_load_balancer.lb1.id
name = "http"
default_backend_set_name = oci_load_balancer_backend_set.lb-bes1.name
port = 80
protocol = "HTTP"
}
resource "oci_load_balancer_backend" "lb-be1" {
load_balancer_id = oci_load_balancer.lb1.id
backendset_name = oci_load_balancer_backend_set.lb-bes1.name
ip_address = oci_core_instance.compute_instance1.private_ip
port = 5000
backup = false
drain = false
offline = false
weight = 1
}
resource "oci_load_balancer_backend" "lb-be2" {
load_balancer_id = oci_load_balancer.lb1.id
backendset_name = oci_load_balancer_backend_set.lb-bes1.name
ip_address = oci_core_instance.compute_instance2.private_ip
port = 5000
backup = false
drain = false
offline = false
weight = 1
}