Configure Your Terminal Environment
Overview
Teaching: 20 min
Exercises: 10 minQuestions
What is a Terminal environment?
How to configure the Terminal environment to run the Scripts?
Objectives
Installing the Scripts.
Installing and configuring the AWS CLI.
Prerequisites
Please read Workshops Organisation if you haven’t done so. To complete this episode you will need:
- if you are self-studying the course or attending a workshop using your AWS account:
- to have created and configured your AWS account as described in the two previous episodes: Create Your AWS Account and Configure Your AWS Account.
- your AWS account programmatic access credentials (*):
- Access Key ID
- Secret Access Key
- Windows users: to have installed Git Bash — see the Setup section.
- Mac users: to have installed or updated Bash — see the Setup section.
- Mac and Linux users: to have installed:
git
,curl
,unzip
,ssh
- if you are attending a workshop using a Cloud-SPAN AWS account (and an AWS Linux instance):
- to follow the instructions in this episode for Linux terminals.
- Windows users: to have installed Git Bash — see Workshops Organisation and the Setup section.
(*) Those credentials are in the .csv file you downloaded once you created your IAM account as part of configuring your AWS account.
Introduction
This episode will guide you to configure your terminal enviroment so that you can run the Scripts to create and manage instances.
Configuring your terminal environment consists of:
- installing the Scripts
- installing and configuring the AWS CLI to use your AWS account.
Installing the Scripts and the AWS CLI includes downloading each and configuring the execution path of your terminal so that the Scripts and the AWS CLI can be run from any directory location only specifying their name.
Outline
Steps
These are the main steps you will follow to configure your terminal environment:
Install the Scripts.
You will download the Scripts from GitHub and make them accessible through the execution path of your terminal environment.- Install the AWS CLI.
You will download the AWS CLI and make it accessible through the execution path of your terminal environment.- Configure the AWS CLI.
You will configure the AWS CLI to use the access key ID and a secret access key of your AWS IAM user account.
1. Installing the Scripts
Download the Scripts from GitHub
To download the Scripts, open your (Git Bash, Linux or Mac) terminal and enter or copy-paste the git command below (without the dollar sign $
):
$ git clone https://github.com/Cloud-SPAN/aws-instances.git ~/_tmp_cloudspan_aws
Make the Scripts accessible through the execution path
There are many ways to make the Scripts accessible through the execution path. To avoid any conflicts with the current configuration of your terminal environment, we are going to:
- create a new “bin” directory
- copy the Scripts to the new bin directory
- add the new bin directory to the execution path
You can copy-paste the commands below into your terminal to carry out those three steps using ~/.local/bincsaws
as the new bin directory — if ~/.local/bincsaws
already exists in your terminal environment, choose another name for bincsaws
and use the new name instead of bincsaws
in the commands below:
$ mkdir -p ~/.local/bincsaws
$ cp ~/_tmp_cloudspan_aws/*.sh ~/.local/bincsaws
Click the bar that corresponds to your terminal to display the next command you will type or copy-paste into your terminal:
Git Bash and Linux terminal:
Mac terminal that runs Bash:
Mac terminal that runs Zsh shell:
The last command echo "PATH=\"\$HOME ...
adds an assignment shell statement at the end of your terminal shell configuration file (either ~/.bashrc
or ~/.bash_profile
or ~/.zshrc
depending on your terminal).
The statement adds the new bin directory to the execution path which is held by the shell variable PATH.
Since the terminal runs the commands in that configuration file every time it is launched, that is, every time your login to your instance, the assigment shell statement (we added) will add the “new” bin directory to the execution path on every subsequent launch of the terminal, thus making the Scripts accessible from any directory location.
You need to open (launch) a new terminal for the execution path to get updated (you can close the old terminal as you won’t use it anymore).
Once you have opened a new terminal, the Scripts will be accessible through the execution path and you should be able to run the command csinstances_create.sh
as shown below. This script is one of the Scripts installed in ~/.local/bincsaws
.
$ csinstances_create.sh
The output of csinstances_create.sh
in your terminal should look like this:
The script csinstances_create.sh
was found and run, but as it requires a parameter (the name of a file), it only displayed the usage message and finished.
Don’t delete the directory ~/_tmp_cloudspan_aws
where the Scripts where downloaded
You will use some files in that directory in the next lesson. Once we use those files you can delete that directory.
2. Install the AWS CLI
Linux
Mac
Windows
Open Windows
Command Prompt
Launch the installation of the AWS CLI
Complete the installation of the AWS CLI
3. Configure the AWS CLI
The installation of the AWS CLI, as instructed in the previous section, is made local (within your HOME directory) on Linux, and system-wide (for all users) on Mac and Windows. Hence, Mac and Windows users may need to open a new terminal so that the execution path gets updated with the location where the AWS CLI was installed. Otherwise you may see the message aws: command not found
when trying to configure the AWS CLI whose name as a program is aws
.
To configure the AWS CLI, run the command aws configure
in your terminal as shown below, entering the following information when prompted:
- the access key ID and the secret access key associated with your IAM user account
- for default region name, enter
eu-west-1
(Ireland) - for default output format, enter:
json
$ aws configure
AWS Access Key ID [None]: AVQN34BMZ4ADSXUFIAKI ### YOURS
AWS Secret Access Key [None]: XZVbQgWJeOVY43V2UdmrUkqIVo0/bSO3gtc4E3Lx ### YOURS
Default region name [None]: eu-west-1
Default output format [None]: json
Check the AWS CLI configuration
To check the configuration of the AWS CLI, run the following command:
$ aws ec2 get-vpn-connection-device-types
If your configuration is correct, you should see an output like this:
{
"VpnConnectionDeviceTypes": [
{
"VpnConnectionDeviceTypeId": "36ef5d04",
"Vendor": "Barracuda",
"Platform": "NextGen Firewall F-Series",
"Software": "6.2+"
},
...
Your Linux machine environment is now configured to use the Scripts in the next lesson: Managing AWS Instances.
If instead you see an authorisation failure message like the one below, your configuration of the AWS CLI is not correct. Run aws configure
again and check that you properly copy-paste your keys and other information.
An error occurred (AuthFailure) when calling the GetVpnConnectionDeviceTypes operation: AWS was not > able to validate the provided access credentials
Key Points
Your terminal environments can be a Git Bash terminal running on a Windows computer; a Linux terminal running the Bash shell; a Mac terminal running either the Bash shell or the Zsh shell, but you must install or update the Bash shell to version 5.0 or higher.
You can also use a Linux or Mach terminal in a remote server through
ssh
.The configuration of the AWS CLI sets your AWS account as the target account where the Scripts will create and manage AWS resources.