Skip to content

Instantly share code, notes, and snippets.

View romach's full-sized avatar

Roman Cherepanov romach

View GitHub Profile
@romach
romach / terraform_installer.sh
Last active January 25, 2021 21:33 — forked from Vidimensional/terraform_installer.sh
Terraform Installer
#!/bin/bash
# sudo ./terraform_installer.sh -a linux_amd64
set -e
while getopts a: flag
do
case "${flag}" in
a) ARCHITECTURE=${OPTARG};;