Configure Your Terminal Environment

Overview

Teaching: 20 min
Exercises: 10 min
Questions
  • 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 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:

  1. Install the Scripts.
    You will download the Scripts from GitHub and make them accessible through the execution path of your terminal environment.

  2. Install the AWS CLI.
    You will download the AWS CLI and make it accessible through the execution path of your terminal environment.
  3. 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:

  1. create a new “bin” directory
  2. copy the Scripts to the new bin directory
  3. 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:

Screenshot of Linux terminal with the name of the script "csinstances_create.sh" circled

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

To install the AWS CLI in your Linux computer:

  • if you installed the Scripts in the suggested directory ~/.local/bincsaws, follow the instructions under “Automatic installation”.
  • if you installed the Scripts somewhere else, follow the instructions under “Tailored automatic installation”.

Mac

To install the AWS CLI in your Mac computer, enter or copy-paste the brew command below in your terminal (the Setup section shows how to install brew if you need to):

You will see an output like the following:

Go to Section 3 to configure the AWS CLI.

Windows

To install the AWS CLI in your Windows computer, you need to use the Windows “terminal” program called Command Prompt as described below. Once the installation is complete, the AWS CLI will be available to the Git Bash terminal.

Go to the Windows search box (bottom left in the screenshot below) and type the word “command” in it. A window will pop up on the left, listing Command Prompt app at the top. Click on Command Prompt app.

Screenshot of Windows Desktop showing Windows search box with the word "command" typed inx" circled

You will now be presented with the Command Prompt terminal, shown below. In it, type or copy-paste the following command and press Enter to launch the installation of the AWS CLI:

Screenshot of Linux terminal with the name of the script "csinstances_create.sh" circled

A series of windows will pop up once you launch the installation. The heading of each window is listed below in italics and in bold what you need to click, check or select on each window (only the first window in the list is shown below):

  • Welcome to the AWS Command Line Interface v2 Setup Wizard
    • click Next
  • End-User License Agreement
    • check the box for I accept the terms in the Licence Agreement
    • click Next
  • Custom Setup
    • click Next (change nothing)
  • Ready to install AWS Command Line Interface v2
    • click Install
  • Installing AWS Command Line Interface v2
  • Do you want to allow this app to make changes to your device?
    • click Yes
  • Completed the AWS Command Line Interface v2 Setup Wizard
    • click Finish Screenshot of Linux terminal with the name of the script "csinstances_create.sh" circled

Go to Section 3 to configure the AWS CLI. You can use both the Command Prompt terminal or the Git Bash terminal to configure the AWS CLI. We used the Git Bash terminal.

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:

$ 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.