Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 1.14 KB

README.md

File metadata and controls

28 lines (22 loc) · 1.14 KB

Set Variables

From a terminal session inside your Cloud9 environment, prepare your EC2 variables file.

cat > ~/.env << EOF
export AWS_ACCOUNT_ID=$(curl --silent http://169.254.169.254/latest/dynamic/instance-identity/document|grep accountId|awk -F\" '{print $4}')
export AWS_DEFAULT_REGION=$(curl --silent http://169.254.169.254/latest/meta-data/placement/region)
export AWS_PAGER=                                                           # intentionally blank

export EKS_GITHUB_USER=amcginlay                                            # if you fork this repo, change this!
export EKS_K8S_VERSION=1.29                                                 # intentionally default minus one

export EKS_ECR_REGISTRY=\${AWS_ACCOUNT_ID}.dkr.ecr.\${AWS_DEFAULT_REGION}.amazonaws.com
EOF

Ensure these variables get set into every bash session then set the variables into your current shell so you can use them immediately.

echo "source ~/.env" >> ~/.bashrc
source ~/.env

Familiarize yourself with these variable settings

env | sort | grep "AWS\|EKS"

Next: Main Menu | Configure Client Tools