applying this infrastructure will create resources on your azur account so be sure you have enough credits
Edit varibles.tf file with your setting
You need to run the following commands to create the resources with Terraform:
terraform init
terraform plan -out out.plan
terraform apply out.plan
Setup your KUBECONFIG
terraform output kubeconfig > ~/.kube/eks-cluster
export KUBECONFIG=./azurek8s
You can verify the worker nodes are joining the cluster
kubectl get nodes --watch
You can destroy this cluster entirely by running:
terraform plan -destroy
terraform destroy --force