-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoutput.tf
More file actions
44 lines (36 loc) · 1.26 KB
/
output.tf
File metadata and controls
44 lines (36 loc) · 1.26 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
output "oidc_provider_arn" {
description = "The ARN of the cluster OIDC provider."
value = module.cluster.oidc_provider_arn
}
output "oidc_provider" {
description = "The OIDC identity provider."
value = module.cluster.oidc_provider
}
output "oidc_issuer_url" {
description = "The URL on the cluster for the OIDC identity provider."
value = module.cluster.cluster_oidc_issuer_url
}
output "cluster_name" {
description = "The name of the EKS cluster."
value = module.cluster.cluster_name
}
output "cluster_arn" {
description = "The ARN of the EKS cluster."
value = module.cluster.cluster_arn
}
output "worker_security_group_id" {
description = "The security group assigned to the worker nodes"
value = module.cluster.node_security_group_id
}
output "autoscaling_groups" {
description = "List of all the autoscaling groups created by the managed Node Groups."
value = module.cluster.eks_managed_node_groups_autoscaling_group_names
}
output "sg_node_group_id" {
description = "Security group id used for nodes"
value = module.cluster.node_security_group_id
}
output "cluster_security_group_id" {
description = "Security group id of the cluster"
value = module.cluster.cluster_security_group_id
}