.. _build_tools_vm_manually: ======================= Build Tools VM Manually ======================= Requirements ============ - Python3.6+ is required. - Terraform >= 0.14 installed and in your $PATH. - The AWS CLI installed and in your $PATH, and an AWS account with sufficient privileges to create and destroy resources. - AWS `Named profile configured ` Install common packages +++++++++++++++++++++++ .. code:: console sudo apt-get update && sudo apt install -y ssh vim net-tools curl git python3-pip unzip Install awscli ++++++++++++++ - Download the package .. code:: console curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" - Unzip the installer .. code:: console unzip awscliv2.zip - Run the install program .. code:: console sudo ./aws/install Install terraform +++++++++++++++++ - Terraform Prerequisites .. code:: console sudo apt-get update && sudo apt-get install -y gnupg software-properties-common - Add the HashiCorp GPG key .. code:: console curl -fsSL https://apt.releases.hashicorp.com/gpg | sudo apt-key add - - Add the official HashiCorp Linux repository .. code:: console sudo apt-add-repository "deb [arch=amd64] https://apt.releases.hashicorp.com $(lsb_release -cs) main" - Update to add the repository, and install the Terraform CLI .. code:: console sudo apt-get update && sudo apt-get install terraform Install Cloudgoat +++++++++++++++++ - Use git to clone the Cloudgoat repo to home directory and change to the new directory .. code:: console git clone https://github.com/VectraCommunity/cloudgoat.git ~/cloudgoat && cd ~/cloudgoat - Install the Cloudgoat dependencies .. code:: console pip3 install -r requirements.txt && chmod u+x cloudgoat.py Install Pacu ++++++++++++ - Use git to clone the Pacu repo to home directory and change to the new directory .. code:: console git clone https://github.com/VectraCommunity/pacu.git ~/pacu && cd ~/pacu - Install the Pacu dependencies .. code:: console pip3 install -r requirements.txt Add AWS Policy ++++++++++ - The lab may require a policy document for AWS role creation. You can download a policy locally using wget .. code:: console wget https://raw.githubusercontent.com/VectraCommunity/labresources/main/sample_assume_trust_policy.json