| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- ################################################################################
- # Cluster
- ################################################################################
- output "cluster_arn" {
- description = "The Amazon Resource Name (ARN) of the cluster"
- value = module.eks.cluster_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 "cluster_endpoint" {
- description = "Endpoint for your Kubernetes API server"
- value = module.eks.cluster_endpoint
- }
- output "cluster_id" {
- description = "The name/id of the EKS cluster. Will block on cluster creation until the cluster is really ready"
- value = module.eks.cluster_id
- }
- 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_platform_version" {
- description = "Platform version for the cluster"
- value = module.eks.cluster_platform_version
- }
- output "cluster_status" {
- description = "Status of the EKS cluster. One of `CREATING`, `ACTIVE`, `DELETING`, `FAILED`"
- value = module.eks.cluster_status
- }
- output "cluster_security_group_id" {
- description = "Cluster security group that was created by Amazon EKS for the cluster. Managed node groups use this security group for control-plane-to-data-plane communication. Referred to as 'Cluster security group' in the EKS console"
- value = module.eks.cluster_security_group_id
- }
- ################################################################################
- # Security Group
- ################################################################################
- output "cluster_security_group_arn" {
- description = "Amazon Resource Name (ARN) of the cluster security group"
- value = module.eks.cluster_security_group_arn
- }
- ################################################################################
- # IRSA
- ################################################################################
- output "oidc_provider_arn" {
- description = "The ARN of the OIDC Provider if `enable_irsa = true`"
- value = module.eks.oidc_provider_arn
- }
- ################################################################################
- # IAM Role
- ################################################################################
- output "cluster_iam_role_name" {
- description = "IAM role name of the EKS cluster"
- value = module.eks.cluster_iam_role_name
- }
- output "cluster_iam_role_arn" {
- description = "IAM role ARN of the EKS cluster"
- value = module.eks.cluster_iam_role_arn
- }
- output "cluster_iam_role_unique_id" {
- description = "Stable and unique string identifying the IAM role"
- value = module.eks.cluster_iam_role_unique_id
- }
- ################################################################################
- # EKS Addons
- ################################################################################
- output "cluster_addons" {
- description = "Map of attribute maps for all EKS cluster addons enabled"
- value = module.eks.cluster_addons
- }
- ################################################################################
- # EKS Identity Provider
- ################################################################################
- output "cluster_identity_providers" {
- description = "Map of attribute maps for all EKS identity providers enabled"
- value = module.eks.cluster_identity_providers
- }
- ################################################################################
- # CloudWatch Log Group
- ################################################################################
- output "cloudwatch_log_group_name" {
- description = "Name of cloudwatch log group created"
- value = module.eks.cloudwatch_log_group_name
- }
- output "cloudwatch_log_group_arn" {
- description = "Arn of cloudwatch log group created"
- value = module.eks.cloudwatch_log_group_arn
- }
- ################################################################################
- # Fargate Profile
- ################################################################################
- output "fargate_profiles" {
- description = "Map of attribute maps for all EKS Fargate Profiles created"
- value = module.eks.fargate_profiles
- }
- ################################################################################
- # Additional
- ################################################################################
- output "aws_auth_configmap_yaml" {
- description = "Formatted yaml output for base aws-auth configmap containing roles used in cluster node groups/fargate profiles"
- value = module.eks.aws_auth_configmap_yaml
- }
- output "eks_cluster_auth_token" {
- value = data.aws_eks_cluster_auth.this.token
- sensitive = true
- }
|