-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathoutputs.tf
More file actions
49 lines (40 loc) · 1.39 KB
/
outputs.tf
File metadata and controls
49 lines (40 loc) · 1.39 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
output "cluster_endpoint" {
description = "Endpoint for EKS control plane"
value = module.eks.cluster_endpoint
}
output "cluster_name" {
description = "Name of the EKS cluster"
value = module.eks.cluster_name
}
output "cluster_service_cidr" {
description = "CIDR of kubernetes service IP addresses"
value = module.eks.cluster_service_cidr
}
output "cluster_security_group_id" {
description = "Security group ID attached to the EKS cluster"
value = module.eks.cluster_security_group_id
}
output "node_security_group_id" {
description = "Security group ID attached to the EKS nodes"
value = module.eks.node_security_group_id
}
output "cluster_iam_role_name" {
description = "IAM role name for the cluster"
value = module.eks.cluster_iam_role_name
}
output "cluster_certificate_authority_data" {
description = "Base64 encoded certificate data required to communicate with the cluster"
value = module.eks.cluster_certificate_authority_data
}
output "cluster_id" {
description = "The name/id of the EKS cluster"
value = module.eks.cluster_id
}
output "oidc_provider_arn" {
description = "The ARN of the OIDC Provider"
value = module.eks.oidc_provider_arn
}
output "cluster_oidc_issuer_url" {
description = "The URL on the EKS cluster for the OpenID Connect identity provider"
value = module.eks.cluster_oidc_issuer_url
}