Ejercicios de Terraform usando Terragrunt
export AWS_PROFILE=poc
export AWS_DEFAULT_REGION=us-east-1
aws eks update-kubeconfig --region us-west-1 --name demo --profile poc
terragrunt plan terragrunt apply terragrunt destroy
terragrunt run-all apply terragrunt run-all destroy
find ./ -type f -name .terraform.lock.hcl | xargs rm -rf find ./ -type d -name .terragrunt-cache | xargs rm -rf
watch -n 1 'kubectl get po -o wide && kubectl get node' watch -n 10 'kubectl get po -A && kubectl get node'