AWS & EKS
AWS / EKS Provisioning¶
Command-line tool for AWS services. Installs CLI + configures credentials for cloud management.
Lab Environment Only
This tool is intended for ephemeral, short-lived lab environments and is not hardened for production use.
System Requirements
This script is designed for Ubuntu LTS and derivatives (Linux Mint, Pop!_OS). Other distributions (RHEL, Fedora, Debian, ARM) are not supported.
Installation Command¶
curl -sL https://raw.githubusercontent.com/ibtisam-iq/infra-bootstrap/main/scripts/components/aws-eks-stack.sh | sudo bash
Options¶
Install tools only:¶
curl -fsSL https://raw.githubusercontent.com/ibtisam-iq/infra-bootstrap/main/scripts/components/aws-eks-stack.sh | sudo bash
Install + configure AWS automatically:¶
curl -fsSL https://raw.githubusercontent.com/ibtisam-iq/infra-bootstrap/main/scripts/components/aws-eks-stack.sh | sudo bash --auto-config
With custom profile entry:¶
curl -fsSL https://raw.githubusercontent.com/ibtisam-iq/infra-bootstrap/main/scripts/components/aws-eks-stack.sh | sudo bash --auto-config --profile
What It Installs¶
- AWS CLI v2 (latest).
- Basic config (access key, secret, region prompt).
Verify¶
aws --version # e.g., aws-cli/2.15.x
aws sts get-caller-identity # Test auth
Post-Installation Verification
After installation completes, it is recommended to:
- Validate the installed version
- Ensure the service is running (if applicable)
- Confirm CLI availability
- Run a basic operational command
Official Docs: docs.aws.amazon.com/cli
Last update: January 21, 2026 11:27:57 PM