├── .gitignore ├── README.md ├── scripts └── drain_nodes.sh └── terraform ├── data.tf ├── eks.tf └── provider.tf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbsh/blue-green-eks-worker/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbsh/blue-green-eks-worker/HEAD/README.md -------------------------------------------------------------------------------- /scripts/drain_nodes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbsh/blue-green-eks-worker/HEAD/scripts/drain_nodes.sh -------------------------------------------------------------------------------- /terraform/data.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbsh/blue-green-eks-worker/HEAD/terraform/data.tf -------------------------------------------------------------------------------- /terraform/eks.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbsh/blue-green-eks-worker/HEAD/terraform/eks.tf -------------------------------------------------------------------------------- /terraform/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hobbsh/blue-green-eks-worker/HEAD/terraform/provider.tf --------------------------------------------------------------------------------