forked from provectus/sak-kubernetes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
32 lines (27 loc) · 856 Bytes
/
outputs.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
output "kubeconfig_filename" {
value = module.eks.kubeconfig_filename
description = "kubectl config file contents for this EKS cluster."
}
output "cluster_name" {
value = module.eks.cluster_id
description = "Name of eks cluster deploy"
}
output "cluster_oidc_url" {
value = module.eks.cluster_oidc_issuer_url
description = "Oidc issuer url for EKS cluster"
}
output "cluster_output" {
value = {
"cluster_oidc_issuer_url" = module.eks.cluster_oidc_issuer_url,
"oidc_provider_arn" = aws_iam_openid_connect_provider.cluster.arn,
"cluster_id" = module.eks.cluster_id
}
}
output "this" {
value = module.eks
description = "TBD"
}
output "workers_launch_template_ids" {
description = "IDs of the worker launch templates."
value = module.eks.workers_launch_template_ids.*
}