Skip to content

Instantly share code, notes, and snippets.

View HerrTeuer's full-sized avatar
🏠
Working from home

HerrTeuer

🏠
Working from home
View GitHub Profile
@HerrTeuer
HerrTeuer / buildspec.yml
Created June 1, 2021 10:11 — forked from medwig/buildspec.yml
Install Terraform in AWS Codebuild
version: 0.2
phases:
install:
commands:
# install terraform binary
- curl -s -qL -o terraform_install.zip https://releases.hashicorp.com/terraform/0.11.13/terraform_0.11.13_linux_amd64.zip
- unzip terraform_install.zip -d /usr/bin/
- chmod +x /usr/bin/terraform
finally:
@HerrTeuer
HerrTeuer / install-redis.sh
Created February 22, 2019 09:48 — forked from khelll/install-redis.sh
Installing Redis on Amazon Linux
#!/bin/bash
###############################################
# To use:
# chmod +x install-redis.sh
# ./install-redis.sh
###############################################
version=3.2.0
echo "*****************************************"
echo " 1. Prerequisites: Install updates, set time zones, install GCC and make"