AWS Setup 🚀
This guide will help you install and configure the AWS CLI on your system and set up your AWS environment for use.
1. Installation & Configuration
Follow the official AWS CLI install guide here.
For Linux-based systems, you can use the following commands:
curl "https://awscli.amazonaws.com/aws-cli-exe-linux-x86_64.zip" -o "awscliv2.zip"
unzip awscliv2.zip
sudo ./aws/install
Ensure the AWS CLI is installed correctly by checking its version:
aws --version
2. Configure AWS CLI
Once installed, you need to configure the AWS CLI with your credentials:
aws configure
During configuration:
- Enter your Access Key ID and Secret Access Key (provided by AWS).
- Choose a default region, e.g., eu-west-3 (optional but recommended).
- Specify the default output format (e.g., json, table, or text).
- The advised output format is json.
To be able to interact with the AWS CLI, you need to set up your AWS Single Sign-On (SSO) credentials. This is realized by running the following command:
aws sso login
Each time you want to deploy ArmoniK on AWS, you need to run this command to authenticate.
You should click on the URL provided in the output to open the SSO authorization page in a browser.
Step 1: AWS Authentication Setup
To be able to interact with the AWS CLI, you need to set up your AWS Single Sign-On (SSO) credentials. This is realized by running the following command:
aws sso login
Each time you want to deploy ArmoniK on AWS, you need to run this command to authenticate.
You should click on the URL provided in the output to open the SSO authorization page in a browser. It will open the SSO authorization page in your default browser. After logging in, you’ll be prompted to grant permissions.
Step 2: Verify Login
- Once authorized, the CLI will confirm successful login.
- Your authorization page should look similar to this: