-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathtls-certificate.tf
More file actions
73 lines (62 loc) · 1.73 KB
/
tls-certificate.tf
File metadata and controls
73 lines (62 loc) · 1.73 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
# ACM Certificate for the domain
resource "aws_acm_certificate" "cert" {
domain_name = var.domain
validation_method = "DNS"
tags = {
Name = local.tag_name
}
lifecycle {
create_before_destroy = true
}
}
# Create Route53 zone for the domain
resource "aws_route53_zone" "zone" {
name = var.domain
tags = {
Name = local.tag_name
}
}
# Create DNS records for certificate validation
resource "aws_route53_record" "cert_validation" {
for_each = {
for dvo in aws_acm_certificate.cert.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 = aws_route53_zone.zone.zone_id
}
# Certificate validation
resource "aws_acm_certificate_validation" "cert" {
certificate_arn = aws_acm_certificate.cert.arn
validation_record_fqdns = [for record in aws_route53_record.cert_validation : record.fqdn]
}
# Get the ALB details
data "aws_lb" "ingress" {
tags = {
"elbv2.k8s.aws/cluster" = var.name
"ingress.k8s.aws/stack" = "langfuse/langfuse"
"ingress.k8s.aws/resource" = "LoadBalancer"
}
depends_on = [
helm_release.aws_load_balancer_controller,
helm_release.langfuse
]
}
# Create Route53 record for the ALB
resource "aws_route53_record" "langfuse" {
zone_id = aws_route53_zone.zone.zone_id
name = var.domain
type = "A"
alias {
name = data.aws_lb.ingress.dns_name
zone_id = data.aws_lb.ingress.zone_id
evaluate_target_health = true
}
}