├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── apps ├── agentic-troubleshooting │ ├── .env.template │ ├── .gitignore │ ├── Dockerfile │ ├── README.md │ ├── build-and-deploy.sh │ ├── export_env.sh │ ├── helm │ │ └── k8s-troubleshooting-agent │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ ├── _helpers.tpl │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── rbac.yaml │ │ │ ├── secret.yaml │ │ │ └── serviceaccount.yaml │ │ │ └── values.yaml │ ├── main.py │ ├── requirements.txt │ └── src │ │ ├── agents │ │ ├── agent_orchestrator.py │ │ ├── k8s_specialist.py │ │ └── memory_agent.py │ │ ├── config │ │ └── settings.py │ │ ├── prompts.py │ │ ├── slack_handler.py │ │ └── tools │ │ └── k8s_tools.py └── chatbot │ ├── .dockeringnore │ ├── Dockerfile │ ├── app.py │ ├── clients │ ├── kubernetes_client.py │ ├── llm_client.py │ └── opensearch_client.py │ ├── requirements.txt │ └── utils │ └── logger.py ├── demo ├── demo-script.md ├── deploy.sh └── multi-tier-app.yaml ├── oom-kill.sh ├── provision-delete-error-pods.sh ├── static └── images │ └── chatbot-architecture.jpg └── terraform ├── agentic.tf ├── install.sh ├── main.tf ├── manifests ├── chatbot-chart │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── rbac.yaml │ │ ├── service.yaml │ │ └── serviceaccount.yaml │ └── values.yaml ├── karpenter-chart │ ├── Chart.yaml │ ├── templates │ │ ├── nodeclass.yaml │ │ └── nodepool.yaml │ ├── values-gpu.yaml │ └── values.yaml ├── kube-prometheus-stack-values.yaml ├── prometheus-rule.yaml └── vllm-chart │ ├── Chart.yaml │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── deployment.yaml │ └── service.yaml │ └── values.yaml ├── modules ├── agentic-chatbot │ ├── main.tf │ ├── outputs.tf │ └── variables.tf └── ingestion-pipeline │ ├── lambda │ ├── Dockerfile │ ├── processor.py │ └── requirements.txt │ ├── main.tf │ ├── outputs.tf │ └── variables.tf ├── outputs.tf ├── terraform.tfvars.example └── variables.tf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/README.md -------------------------------------------------------------------------------- /apps/agentic-troubleshooting/.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/apps/agentic-troubleshooting/.env.template -------------------------------------------------------------------------------- /apps/agentic-troubleshooting/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/apps/agentic-troubleshooting/.gitignore -------------------------------------------------------------------------------- /apps/agentic-troubleshooting/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/apps/agentic-troubleshooting/Dockerfile -------------------------------------------------------------------------------- /apps/agentic-troubleshooting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/apps/agentic-troubleshooting/README.md -------------------------------------------------------------------------------- /apps/agentic-troubleshooting/build-and-deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/apps/agentic-troubleshooting/build-and-deploy.sh -------------------------------------------------------------------------------- /apps/agentic-troubleshooting/export_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/apps/agentic-troubleshooting/export_env.sh -------------------------------------------------------------------------------- /apps/agentic-troubleshooting/helm/k8s-troubleshooting-agent/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/apps/agentic-troubleshooting/helm/k8s-troubleshooting-agent/Chart.yaml -------------------------------------------------------------------------------- /apps/agentic-troubleshooting/helm/k8s-troubleshooting-agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/apps/agentic-troubleshooting/helm/k8s-troubleshooting-agent/README.md -------------------------------------------------------------------------------- /apps/agentic-troubleshooting/helm/k8s-troubleshooting-agent/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/apps/agentic-troubleshooting/helm/k8s-troubleshooting-agent/templates/_helpers.tpl -------------------------------------------------------------------------------- /apps/agentic-troubleshooting/helm/k8s-troubleshooting-agent/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/apps/agentic-troubleshooting/helm/k8s-troubleshooting-agent/templates/configmap.yaml -------------------------------------------------------------------------------- /apps/agentic-troubleshooting/helm/k8s-troubleshooting-agent/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/apps/agentic-troubleshooting/helm/k8s-troubleshooting-agent/templates/deployment.yaml -------------------------------------------------------------------------------- /apps/agentic-troubleshooting/helm/k8s-troubleshooting-agent/templates/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/apps/agentic-troubleshooting/helm/k8s-troubleshooting-agent/templates/rbac.yaml -------------------------------------------------------------------------------- /apps/agentic-troubleshooting/helm/k8s-troubleshooting-agent/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/apps/agentic-troubleshooting/helm/k8s-troubleshooting-agent/templates/secret.yaml -------------------------------------------------------------------------------- /apps/agentic-troubleshooting/helm/k8s-troubleshooting-agent/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/apps/agentic-troubleshooting/helm/k8s-troubleshooting-agent/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /apps/agentic-troubleshooting/helm/k8s-troubleshooting-agent/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/apps/agentic-troubleshooting/helm/k8s-troubleshooting-agent/values.yaml -------------------------------------------------------------------------------- /apps/agentic-troubleshooting/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/apps/agentic-troubleshooting/main.py -------------------------------------------------------------------------------- /apps/agentic-troubleshooting/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/apps/agentic-troubleshooting/requirements.txt -------------------------------------------------------------------------------- /apps/agentic-troubleshooting/src/agents/agent_orchestrator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/apps/agentic-troubleshooting/src/agents/agent_orchestrator.py -------------------------------------------------------------------------------- /apps/agentic-troubleshooting/src/agents/k8s_specialist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/apps/agentic-troubleshooting/src/agents/k8s_specialist.py -------------------------------------------------------------------------------- /apps/agentic-troubleshooting/src/agents/memory_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/apps/agentic-troubleshooting/src/agents/memory_agent.py -------------------------------------------------------------------------------- /apps/agentic-troubleshooting/src/config/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/apps/agentic-troubleshooting/src/config/settings.py -------------------------------------------------------------------------------- /apps/agentic-troubleshooting/src/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/apps/agentic-troubleshooting/src/prompts.py -------------------------------------------------------------------------------- /apps/agentic-troubleshooting/src/slack_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/apps/agentic-troubleshooting/src/slack_handler.py -------------------------------------------------------------------------------- /apps/agentic-troubleshooting/src/tools/k8s_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/apps/agentic-troubleshooting/src/tools/k8s_tools.py -------------------------------------------------------------------------------- /apps/chatbot/.dockeringnore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/apps/chatbot/.dockeringnore -------------------------------------------------------------------------------- /apps/chatbot/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/apps/chatbot/Dockerfile -------------------------------------------------------------------------------- /apps/chatbot/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/apps/chatbot/app.py -------------------------------------------------------------------------------- /apps/chatbot/clients/kubernetes_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/apps/chatbot/clients/kubernetes_client.py -------------------------------------------------------------------------------- /apps/chatbot/clients/llm_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/apps/chatbot/clients/llm_client.py -------------------------------------------------------------------------------- /apps/chatbot/clients/opensearch_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/apps/chatbot/clients/opensearch_client.py -------------------------------------------------------------------------------- /apps/chatbot/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/apps/chatbot/requirements.txt -------------------------------------------------------------------------------- /apps/chatbot/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/apps/chatbot/utils/logger.py -------------------------------------------------------------------------------- /demo/demo-script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/demo/demo-script.md -------------------------------------------------------------------------------- /demo/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/demo/deploy.sh -------------------------------------------------------------------------------- /demo/multi-tier-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/demo/multi-tier-app.yaml -------------------------------------------------------------------------------- /oom-kill.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/oom-kill.sh -------------------------------------------------------------------------------- /provision-delete-error-pods.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/provision-delete-error-pods.sh -------------------------------------------------------------------------------- /static/images/chatbot-architecture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/static/images/chatbot-architecture.jpg -------------------------------------------------------------------------------- /terraform/agentic.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/terraform/agentic.tf -------------------------------------------------------------------------------- /terraform/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/terraform/install.sh -------------------------------------------------------------------------------- /terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/terraform/main.tf -------------------------------------------------------------------------------- /terraform/manifests/chatbot-chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/terraform/manifests/chatbot-chart/Chart.yaml -------------------------------------------------------------------------------- /terraform/manifests/chatbot-chart/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/terraform/manifests/chatbot-chart/templates/_helpers.tpl -------------------------------------------------------------------------------- /terraform/manifests/chatbot-chart/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/terraform/manifests/chatbot-chart/templates/deployment.yaml -------------------------------------------------------------------------------- /terraform/manifests/chatbot-chart/templates/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/terraform/manifests/chatbot-chart/templates/rbac.yaml -------------------------------------------------------------------------------- /terraform/manifests/chatbot-chart/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/terraform/manifests/chatbot-chart/templates/service.yaml -------------------------------------------------------------------------------- /terraform/manifests/chatbot-chart/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/terraform/manifests/chatbot-chart/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /terraform/manifests/chatbot-chart/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/terraform/manifests/chatbot-chart/values.yaml -------------------------------------------------------------------------------- /terraform/manifests/karpenter-chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/terraform/manifests/karpenter-chart/Chart.yaml -------------------------------------------------------------------------------- /terraform/manifests/karpenter-chart/templates/nodeclass.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/terraform/manifests/karpenter-chart/templates/nodeclass.yaml -------------------------------------------------------------------------------- /terraform/manifests/karpenter-chart/templates/nodepool.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/terraform/manifests/karpenter-chart/templates/nodepool.yaml -------------------------------------------------------------------------------- /terraform/manifests/karpenter-chart/values-gpu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/terraform/manifests/karpenter-chart/values-gpu.yaml -------------------------------------------------------------------------------- /terraform/manifests/karpenter-chart/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/terraform/manifests/karpenter-chart/values.yaml -------------------------------------------------------------------------------- /terraform/manifests/kube-prometheus-stack-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/terraform/manifests/kube-prometheus-stack-values.yaml -------------------------------------------------------------------------------- /terraform/manifests/prometheus-rule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/terraform/manifests/prometheus-rule.yaml -------------------------------------------------------------------------------- /terraform/manifests/vllm-chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/terraform/manifests/vllm-chart/Chart.yaml -------------------------------------------------------------------------------- /terraform/manifests/vllm-chart/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/terraform/manifests/vllm-chart/templates/NOTES.txt -------------------------------------------------------------------------------- /terraform/manifests/vllm-chart/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/terraform/manifests/vllm-chart/templates/_helpers.tpl -------------------------------------------------------------------------------- /terraform/manifests/vllm-chart/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/terraform/manifests/vllm-chart/templates/deployment.yaml -------------------------------------------------------------------------------- /terraform/manifests/vllm-chart/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/terraform/manifests/vllm-chart/templates/service.yaml -------------------------------------------------------------------------------- /terraform/manifests/vllm-chart/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/terraform/manifests/vllm-chart/values.yaml -------------------------------------------------------------------------------- /terraform/modules/agentic-chatbot/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/terraform/modules/agentic-chatbot/main.tf -------------------------------------------------------------------------------- /terraform/modules/agentic-chatbot/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/terraform/modules/agentic-chatbot/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/agentic-chatbot/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/terraform/modules/agentic-chatbot/variables.tf -------------------------------------------------------------------------------- /terraform/modules/ingestion-pipeline/lambda/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/terraform/modules/ingestion-pipeline/lambda/Dockerfile -------------------------------------------------------------------------------- /terraform/modules/ingestion-pipeline/lambda/processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/terraform/modules/ingestion-pipeline/lambda/processor.py -------------------------------------------------------------------------------- /terraform/modules/ingestion-pipeline/lambda/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/terraform/modules/ingestion-pipeline/lambda/requirements.txt -------------------------------------------------------------------------------- /terraform/modules/ingestion-pipeline/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/terraform/modules/ingestion-pipeline/main.tf -------------------------------------------------------------------------------- /terraform/modules/ingestion-pipeline/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/terraform/modules/ingestion-pipeline/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/ingestion-pipeline/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/terraform/modules/ingestion-pipeline/variables.tf -------------------------------------------------------------------------------- /terraform/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/terraform/outputs.tf -------------------------------------------------------------------------------- /terraform/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/terraform/terraform.tfvars.example -------------------------------------------------------------------------------- /terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sample-eks-troubleshooting-rag-chatbot/HEAD/terraform/variables.tf --------------------------------------------------------------------------------