outputs.tf 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. output "cluster_id" {
  2. description = "The ID/name of the EKS cluster"
  3. value = module.eks.cluster_id
  4. }
  5. output "cluster_arn" {
  6. description = "The Amazon Resource Name (ARN) of the cluster"
  7. value = module.eks.cluster_arn
  8. }
  9. output "cluster_endpoint" {
  10. description = "Endpoint for your Kubernetes API server"
  11. value = module.eks.cluster_endpoint
  12. }
  13. output "cluster_security_group_id" {
  14. description = "Cluster security group that was created by Amazon EKS for the cluster"
  15. value = module.eks.cluster_security_group_id
  16. }
  17. output "cluster_iam_role_name" {
  18. description = "IAM role name associated with EKS cluster"
  19. value = module.eks.cluster_iam_role_name
  20. }
  21. output "cluster_iam_role_arn" {
  22. description = "IAM role ARN associated with EKS cluster"
  23. value = module.eks.cluster_iam_role_arn
  24. }
  25. output "cluster_certificate_authority_data" {
  26. description = "Base64 encoded certificate data required to communicate with the cluster"
  27. value = module.eks.cluster_certificate_authority_data
  28. }
  29. output "oidc_provider_arn" {
  30. description = "The ARN of the OIDC Provider if enabled"
  31. value = module.eks.oidc_provider_arn
  32. }
  33. output "cluster_primary_security_group_id" {
  34. description = "Cluster security group that was created by Amazon EKS for the cluster"
  35. value = module.eks.cluster_primary_security_group_id
  36. }