[Python] Terraform install (AI generated)

This the python version of the bash script discussed in a previous post The script is designed to automate the installation and update process of Terraform (binary).What does the script do: Below Bash Code will install or update Terraform (File: install_terraform.sh) This is AI generated code (based on sample input of the previous terraform.sh bash … Read more

[Bash] Terraform install

To make sure the latest version of terraform is used when applying IaC code (mostly on a local Linux terminal) this bash script comes in handy ! The script is designed to automate the installation and update process of Terraform (binary).What does the script do: Below Bash Code will install or update Terraform (File: install_terraform.sh) … Read more

Deploying Azure Storage with Bicep and GitHub Actions (part 1)

In this blog post, it is shown how to deploy an Azure Storage account using Bicep, a declarative language for describing and deploying Azure resources, and GitHub Actions, a CI/CD solution that’s directly integrated into GitHub. The Bicep File Our Bicep file, main.bicep, starts by defining a few parameters: The Bicep file then defines a … Read more