forked from SPHTech-Platform/terraform-aws-eks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
54 lines (44 loc) · 1.44 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
output "worker_iam_role_arn" {
description = "IAM Role ARN used by worker nodes"
value = aws_iam_role.workers.arn
}
output "worker_iam_role_name" {
description = "IAM Role Name used by worker nodes"
value = aws_iam_role.workers.name
}
output "cluster_security_group_id" {
description = "Security Group ID of the master nodes"
value = module.eks.cluster_security_group_id
}
output "worker_security_group_id" {
description = "Security Group ID of the worker nodes"
value = module.eks.node_security_group_id
}
output "oidc_provider_arn" {
description = "OIDC Provider ARN for IRSA"
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
}
output "cluster_name" {
description = "EKS Cluster name created"
value = module.eks.cluster_id
}
output "cluster_endpoint" {
description = "Endpoint of the EKS Cluster"
value = module.eks.cluster_endpoint
}
output "cluster_certificate_authority_data" {
description = "Base64 Encoded Cluster CA Data"
value = module.eks.cluster_certificate_authority_data
}
output "ebs_kms_key_id" {
description = "KMS Key ID used for EBS encryption"
value = module.kms_ebs.key_id
}
output "ebs_kms_key_arn" {
description = "KMS Key ARN used for EBS encryption"
value = module.kms_ebs.key_arn
}