Creating AWS ELK Cluster
1. Installing eksctl commandline tool
# Download the latest version of eksctl commandline tool
$ curl --silent --location "https://github.com/weaveworks/eksctl/releases/latest/download/eksctl_$(uname -s)_amd64.tar.gz" | tar xz -C /tmp
# Move eksctl to your default command path
$ sudo mv /tmp/eksctl /usr/local/bin2. Set AWS account credentials
[default]
aws_access_key_id=A*****s
aws_secret_access_key=tm******f[default]
region=us-east-2
output=yaml3. Create a new EKS Cluster
Last updated