| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- output "cluster_id" {
- description = "The ID/name of the EKS cluster"
- value = module.eks.cluster_id
- }
- output "cluster_arn" {
- description = "The Amazon Resource Name (ARN) of the cluster"
- value = module.eks.cluster_arn
- }
- output "cluster_endpoint" {
- description = "Endpoint for your Kubernetes API server"
- value = module.eks.cluster_endpoint
- }
- output "cluster_security_group_id" {
- description = "Cluster security group that was created by Amazon EKS for the cluster"
- value = module.eks.cluster_security_group_id
- }
- output "cluster_iam_role_name" {
- description = "IAM role name associated with EKS cluster"
- value = module.eks.cluster_iam_role_name
- }
- output "cluster_iam_role_arn" {
- description = "IAM role ARN associated with EKS cluster"
- value = module.eks.cluster_iam_role_arn
- }
- output "cluster_certificate_authority_data" {
- description = "Base64 encoded certificate data required to communicate with the cluster"
- value = module.eks.cluster_certificate_authority_data
- }
- output "oidc_provider_arn" {
- description = "The ARN of the OIDC Provider if enabled"
- value = module.eks.oidc_provider_arn
- }
- output "cluster_primary_security_group_id" {
- description = "Cluster security group that was created by Amazon EKS for the cluster"
- value = module.eks.cluster_primary_security_group_id
- }
|