Navigation Menu

Skip to content
View HammoTime's full-sized avatar
Block or Report

Block or report HammoTime

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
HammoTime/README.md

Hello, I'm Adam. I love working on Cloud Projects, especially those focusing on infrastructure-as-code and architecture. Currently focusing on Kubernetes, Serverless (AWS Lambda) and Go.

Pinned

  1. engi-fyi/go-credentials engi-fyi/go-credentials Public

    This project was built out of a need for a library to manage credentials files (similar to AWS credentials), their attributes, sessions, and environment variables.

    Go 2

  2. engi-fyi/aws-creds engi-fyi/aws-creds Public

    Makes it easier to use multiple AWS accounts when you don't have SSO available.

    Python 4 1

  3. engi-fyi/aws-www-monitoring engi-fyi/aws-www-monitoring Public

    Provides an easy way to monitor websites using Route 53, Lambda, CloudWatch, and SNS.

    HCL

  4. Install Terrafrom on Red Hat and der... Install Terrafrom on Red Hat and derivatives
    1
    sudo yum install -y jq wget unzip
    2
    cd ~
    3
    version=$(curl https://api.github.com/repos/hashicorp/terraform/releases/latest --silent | jq ".tag_name" -r)
    4
    version=$(echo $version | sed 's/v//g') # get rid of 'v' from version number
    5
    echo "Installing Terraform $version."
  5. Install Terraform on a Mac Install Terraform on a Mac
    1
    brew install jq
    2
    brew install wget
    3
    cd ~
    4
    version=$(curl https://api.github.com/repos/hashicorp/terraform/releases/latest --silent | jq ".tag_name" -r)
    5
    version=$(echo $version | sed 's/v//g') # get rid of 'v' from version number
  6. Install Terraform on Windows Install Terraform on Windows
    1
    $VersionInfo = ((Invoke-WebRequest https://api.github.com/repos/hashicorp/terraform/releases/latest).Content | ConvertFrom-Json).tag_name
    2
    $VersionInfo = $VersionInfo.Replace("v", "")
    3
    Write-Host "Installing Terraform $VersionInfo."
    4
    $Url = "https://releases.hashicorp.com/terraform/" + $VersionInfo + "/terraform_" + $VersionInfo + "_windows_amd64.zip"
    5
    $InstallDirectory = [Environment]::GetFolderPath([Environment+SpecialFolder]::ApplicationData) + "\Terraform"