» Data Source: aws_eks_cluster
Retrieve information about an EKS Cluster.
» Example Usage
data "aws_eks_cluster" "example" {
name = "example"
}
output "endpoint" {
value = "${data.aws_eks_cluster.example.endpoint}"
}
output "kubeconfig-certificate-authority-data" {
value = "${data.aws_eks_cluster.example.certificate_authority.0.data}"
}
» Argument Reference
-
name- (Required) The name of the cluster
» Attributes Reference
-
id- The name of the cluster -
arn- The Amazon Resource Name (ARN) of the cluster. -
certificate_authority- Nested attribute containingcertificate-authority-datafor your cluster.-
data- The base64 encoded certificate data required to communicate with your cluster. Add this to thecertificate-authority-datasection of thekubeconfigfile for your cluster.
-
-
created_at- The Unix epoch time stamp in seconds for when the cluster was created. -
enabled_cluster_log_types- The enabled control plane logs. -
endpoint- The endpoint for your Kubernetes API server. -
platform_version- The platform version for the cluster. -
role_arn- The Amazon Resource Name (ARN) of the IAM role that provides permissions for the Kubernetes control plane to make calls to AWS API operations on your behalf. -
version- The Kubernetes server version for the cluster. -
vpc_config- Nested attribute containing VPC configuration for the cluster.-
endpoint_private_access- Indicates whether or not the Amazon EKS private API server endpoint is enabled. -
endpoint_public_access- Indicates whether or not the Amazon EKS public API server endpoint is enabled. -
security_group_ids– List of security group IDs -
subnet_ids– List of subnet IDs -
vpc_id– The VPC associated with your cluster.
-