Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

README.md

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