Create a new EKS cluster configuration using terraform-aws-eks module
<cluster_name> [--fargate|--managed|--auto]eks/# Create New EKS Cluster Create a new EKS cluster Terraform configuration. Arguments: $ARGUMENTS ## Before Creating 1. Verify VPC exists or will be created 2. Discuss node group requirements 3. Identify required add-ons 4. Plan IRSA requirements 5. Review Kubernetes version compatibility ## Cluster Types ### --managed (Default) Managed node groups using EC2 instances: - Best for most workloads - AWS manages node lifecycle - Supports custom AMIs - On-demand and Spot capacity ### --fargate Serverless compute with Fargate profiles: - No node management - Pay per pod - Best for variable/b...