-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathoutputs.tf
More file actions
46 lines (38 loc) · 1.32 KB
/
outputs.tf
File metadata and controls
46 lines (38 loc) · 1.32 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
output "cluster_name" {
description = "EKS Cluster Name to use for a Kubernetes terraform provider"
value = aws_eks_cluster.langfuse.name
}
output "cluster_host" {
description = "EKS Cluster host to use for a Kubernetes terraform provider"
value = aws_eks_cluster.langfuse.endpoint
}
output "cluster_ca_certificate" {
description = "EKS Cluster CA certificate to use for a Kubernetes terraform provider"
value = base64decode(aws_eks_cluster.langfuse.certificate_authority[0].data)
sensitive = true
}
output "cluster_token" {
description = "EKS Cluster Token to use for a Kubernetes terraform provider"
value = data.aws_eks_cluster_auth.langfuse.token
sensitive = true
}
output "route53_nameservers" {
description = "Nameserver for the Route53 zone"
value = aws_route53_zone.zone.name_servers
}
output "private_subnet_ids" {
description = "Private subnet IDs from the VPC module"
value = local.private_subnets
}
output "public_subnet_ids" {
description = "Public subnet IDs from the VPC module"
value = local.public_subnets
}
output "bucket_name" {
description = "Name of the S3 bucket for Langfuse"
value = aws_s3_bucket.langfuse.bucket
}
output "bucket_id" {
description = "ID of the S3 bucket for Langfuse"
value = aws_s3_bucket.langfuse.id
}