Skip to content

Latest commit

 

History

History
39 lines (29 loc) · 821 Bytes

File metadata and controls

39 lines (29 loc) · 821 Bytes

AWS EKS Cluster Deployment Using Terraform

Steps to implement:

  • Set Up Terraform

    • Install Terraform: Make sure Terraform is installed on your system. If not, click here to install.
  • In the current directory you will see all the .tf files

  • Initialize the terraform project

terraform init
  • Validate the configuration
terraform validate
  • Preview the infrastructure changes
terraform plan
  • Apply the changes
terraform apply --auto-approve
  • Update your kubeconfig file to connect to the EKS cluster
aws eks --region eu-west-1 update-kubeconfig --name gemini-eks-cluster
  • Verify the cluster connection
kubectl get nodes