Install Terraform on wsl Open Ubuntu application (or your installed distro) Run the following command which will install unzip (its my preference to extract files) Navigate to the Terraform download page and grab the most recent download URL. Using the above URL, run the following commands which will download, unzip, move the binary to users…
Blog
How to Set Up Pre-commit
pre-commit hooks are a mechanism of the version control system git. They let you execute code right before the commit. I highly recommend using WSL/WSL2 with Ubuntu and following the Ubuntu installation guide. Install dependencies You need to install terraform-docs and TFLint dependencies to execute our pre-commit successfully. Click the link to follow the instruction….
Terraform study note: Planning and Dependencies
Planning and Dependencies When Terraform is trying to make the deployment match you configuration, it has to run through a planning process. Terraform goes through this process when you run a plan, apply or destroy. As part of the planning process, it needs to figure out the order in which to create, update, or delete…
PowerShell – 1. Getting started with PowerShell 3.0
Purpose for PowerShell Doing automation and solving problems are huge challenge. we need to have an interactive shell an environment so that you can explore and automate manual jobs. The purpose to powershell is making you effective getting stuff done faster and solving problems that you probably had a hard time solving before. Customize the…
How to renew Let’s Encrypt certificate
This article covers installing a standard Let’s Encrypt SSL certificate (not a wildcard) for websites hosted in a Lightsail instance with a Bitnami stack. Examples of these instance blueprints include WordPress, LAMP, Magento, and MEAN. If you have a different instance blueprint or want to install a wildcard certificate, see one of the following: Standard…
Terraform in Azure DevOps Pipelines
Azure CLI Setup Install Azure CLI for windows: upgrade az cli version Authenticating using the Azure CLI Azure Before we get started, we need to create a resource group. A resource group is a container that holds related resources for an Azure solution. Now, create a service principle and connect to Azure DevOps. An Azure…
Terraform Certification – Load balancer
I’ve updated configuration to include variables, locals, and output. Now it’s time to update the architecture of deployment to include resiliency by adding new resources. Our current architecture is using a single subnet in a single AZ with a single EC2 instance. That’s a lot of single point of failure. To improve reliability of the…
Terraform Certification – tfvars
All the variable need a supplied values. If we want to submit values for all of these variables at the command line, use this command. Let’s create a file called terraform.tfvars and populate it with some of our non-sensitive variables and values. We can store our sensitive data in environment variables like this:
Terraform Certification – Input Variables and Outputs
Variables and Outputs Terraform can accept values as input, transform values inside a configuration, and return values as output. There’re three different concepts to consider when working with data in a Terraform Input variables (variables) : used to pass information to a Terraform configuration Local values (locals) : computed values inside the configuration that can…
Terraform Certification – What is terraform?
Terraform is an example of a declarative approach to deploying Infrastructure as Code. other core concepts are: consistency: Each time you do something, the results should be the same idempotent: If you haven’t changed anything about your code, nothing will change in the environment Push or Pull: Terraform is a push-type model, the configuration that…