HammoTime
Follow
I love working on cloud-based projects, especially those focusing on infrastructure-as-code and architecture. Currently focusing on Kubernetes and Go.
- Brisbane, Australia
-
11:21
(UTC +10:00) - https://engi.fyi/
- @stophammotime
Highlights
- Pro
Pinned Loading
-
engi-fyi/go-credentials
engi-fyi/go-credentials PublicThis 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
-
engi-fyi/aws-creds
engi-fyi/aws-creds PublicMakes it easier to use multiple AWS accounts when you don't have SSO available.
-
engi-fyi/aws-www-monitoring
engi-fyi/aws-www-monitoring PublicProvides an easy way to monitor websites using Route 53, Lambda, CloudWatch, and SNS.
HCL
-
Install Terrafrom on Red Hat and der...
Install Terrafrom on Red Hat and derivatives 1sudo yum install -y jq wget unzip
2cd ~
3version=$(curl https://api.github.com/repos/hashicorp/terraform/releases/latest --silent | jq ".tag_name" -r)
4version=$(echo $version | sed 's/v//g') # get rid of 'v' from version number
5echo "Installing Terraform $version."
-
Install Terraform on a Mac
Install Terraform on a Mac 1brew install jq
2brew install wget
3cd ~
4version=$(curl https://api.github.com/repos/hashicorp/terraform/releases/latest --silent | jq ".tag_name" -r)
5version=$(echo $version | sed 's/v//g') # get rid of 'v' from version number
-
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", "")
3Write-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"
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.