-
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
.tffiles -
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