Posts

Showing posts from September, 2021

Introduction to Terraform

Image
  Introduction to Terraform Terraform is an infrastructure as code (IaC) tool that allows you to build, change, and version infrastructure safely and efficiently. This includes low-level components such as compute instances, storage, and networking, as well as high-level components such as DNS entries, SaaS features, etc. Terraform can manage both existing service providers and custom in-house solutions. Below, HashiCorp co-founder and CTO Armon Dadgar describes how Terraform can help solve common infrastructure challenges. Introduction to Terraform Terraform is an infrastructure as code (IaC) tool that allows you to build, change, and version infrastructure safely and efficiently. This includes low-level components such as compute instances, storage, and networking, as well as high-level components such as DNS entries, SaaS features, etc. Terraform can manage both existing service providers and custom in-house solutions. Below, HashiCorp co-founder and CTO Armon Dadgar describes how T

AWS CLI Cheatsheet

   aws_cli_cheatsheet.md  AWS CLI Cheatsheet  Setup  Overview  Virtualbox  Ubuntu 14.04 LTS VM, 64-bit http://releases.ubuntu.com/14.04/ubuntu-14.04.4-desktop-amd64.iso create new machine, settings  System / Processor  Enable PAE/NX  System / Acceleration  Paravirtualization Interface: Default  Enable VT-x/AMD-V  Enable Nested Paging  Display / Screen  Video Memory: 128MB  Acceleration: Enable 3D Acceleration  boot  install  install Virtualbox Guest Additions, passwordless sudo  echo $USER  sudo echo " $USER ALL=(ALL) NOPASSWD:ALL" | sudo tee -a /etc/sudoers  sudo su  apt-get update  apt-get install -y build-essential dkms linux-headers- $(uname -r)  cd /media/aws-admin/  sh ./VBoxLinuxAdditions.run  shutdown now  install AWS CLI  sudo apt-get install -y python-dev python-pip  sudo pip install awscli  aws --version  aws configure  install AWS CLIv2  sudo apt-get install -y python-dev python-pip  sudo pip install awscli  aws --version  aws configure  curl "https://awscli