/ Linux
Terraform Installation
Next ArticleWhat is Terraform?
Terraform is an open-source DevOps tool that provides infrastructure as code capabilities. It allows you to create declarative configuration files that can use various cloud API's to create, update and delete your infrastructure.
Now you've had a high level overview on what it does lets get and install it on Ubuntu 18.04.
Installation
HashiCorp provide their own repositories for installation on the main flavours of Linux.
curl -fsSL https://apt.releases.hashicorp.com/gpg | sudo apt-key add -
sudo apt-add-repository "deb [arch=amd64] https://apt.releases.hashicorp.com $(lsb_release -cs) main"
sudo apt-get update && sudo apt-get install terraform
Running the above commands will add the gpg key to your key store, add the repository to your list that apt gathers software from and install the latest version (1.1.7 at time or writing).
When completed you can run terraform --version
to see version you have installed.
Now that you have the application installed locally give it a go following the tutorials provided by the HashiCorp Learn website.

Clive Walkden
Latest Articles

Bitcoin —
RollerCoin IntroAn introduction to the RollerCoin site and how you can use it to mine your own coins

Author

How to log to information to a file in different Magento 2.4.x versions

Author

Linux —
Letsencrypt Certbot correctly delete certificateA quick example of how to delete a LetsEncrypt Certbot generated certificate.

Author