-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjitsi-public-lb.tf
73 lines (62 loc) · 2.06 KB
/
jitsi-public-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
resource "aws_lb" "jitsi_public" {
name = "${local.resources_prefix}-jitsi-public"
internal = false
load_balancer_type = "network"
subnets = module.vpc.public_subnets
enable_deletion_protection = false
}
resource "aws_lb_listener" "jitsi_web" {
load_balancer_arn = aws_lb.jitsi_public.arn
port = "443"
protocol = "TLS"
certificate_arn = aws_acm_certificate.jitsi_public.arn
alpn_policy = "HTTP2Preferred"
default_action {
type = "forward"
target_group_arn = aws_lb_target_group.jitsi_web.arn
}
}
resource "aws_lb_listener" "jitsi_jvb" {
load_balancer_arn = aws_lb.jitsi_public.arn
port = "10000"
protocol = "UDP"
default_action {
type = "forward"
target_group_arn = aws_lb_target_group.jitsi_jvb.arn
}
}
resource "aws_lb_listener" "jitsi_jvb_fallback" {
load_balancer_arn = aws_lb.jitsi_public.arn
port = "4443"
protocol = "TCP"
default_action {
type = "forward"
target_group_arn = aws_lb_target_group.jitsi_jvb_fallback.arn
}
}
resource "aws_acm_certificate" "jitsi_public" {
domain_name = var.domain_name
validation_method = "DNS"
lifecycle {
create_before_destroy = true
}
}
resource "aws_acm_certificate_validation" "jitsi_public" {
certificate_arn = aws_acm_certificate.jitsi_public.arn
validation_record_fqdns = [for record in aws_route53_record.jitsi_public_certificate_validation : record.fqdn]
}
resource "aws_route53_record" "jitsi_public_certificate_validation" {
for_each = {
for dvo in aws_acm_certificate.jitsi_public.domain_validation_options : dvo.domain_name => {
name = dvo.resource_record_name
record = dvo.resource_record_value
type = dvo.resource_record_type
}
}
allow_overwrite = true
name = each.value.name
records = [each.value.record]
ttl = 60
type = each.value.type
zone_id = var.hosted_zone_id
}