OUR BLOG

bt_bb_section_bottom_section_coverage_image

AWS EKSCTL with Tenable

Install the Kubernetes packages from: https://kubernetes.io/docs/tasks/tools/install-kubectl/ kubectl, kubeadm Install aws-iam-authenticator from https://docs.aws.amazon.com/eks/latest/userguide/install-aws-iam-authenticator.html Install aws cli from https://aws.amazon.com/cli/ test AWS Connection*make sure that you have the ~/.aws/credentials file in place# aws sts get-caller-identity aws_access_key_id=<USER_API_KEY>aws_secret_access_key=<USER_API_SECRET>region=us-east-1output=json **** build EKS cluster **** tenable-demo2.yaml apiVersion: eksctl.io/v1alpha5 kind: ClusterConfig metadata: name: tenable-demo2 region: us-east-1 availabilityZones: ["us-east-1a", "us-east-1b"] nodeGroups: - name: ng-1 instanceType: t3.medium...