Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 547 Bytes

File metadata and controls

34 lines (23 loc) · 547 Bytes

Docker Terraform Stacks EKS Cluster

Docker image for provisioning an EKS cluster with full AWS resources.

Get Started

# clone the repo
git clone https://github.com/taemon1337/docker-ansible-eks.git

# ensure docker is installed
docker version

# build the ansible docker image
make build

# run the image and shell into it
make run

# run ansible from the image
make terraform

# initialize terraform
make init

# plan the terraform
make plan

# create the eks cluster
make cluster

# delete the eks cluster
make delete-cluster