Β© 2023 Hashnode
#iac
I tried out Terraform for the first time in one of my previous posts and since nothing beats learning by continuously doing, I decided to convert a CloudFormation script I wrote to "deploy infrastructβ¦
Context There are particularly three actions that you can apply to your CloudFormation stacks. CREATE UPDATE DELETE This blog focuses more on the deletion side of the Stacks. Why would you want to have an advanced deletion mechanism inβ¦
First add HashiCorpβs GPG key. curl -fsSL https://apt.releases.hashicorp.com/gpg | sudo apt-key add - Now add HashiCorpβs repository to Ubuntu. sudo apt-add-repository "deb [arch=amd64] https://apt.releases.hashicorp.com $(lsb_release -csβ¦
The Why Being able to customize and create custom resources that are not natively supported by CloudFormation is pretty cool. For the longest time, I find this feature puzzling with the following questions: How does CloudFormation pass inpβ¦
Terraform is a powerful tool that allows you to manage and automate the creation, modification, and destruction of your infrastructure. It works by describing your infrastructure as code, which can beβ¦
Welcome back to the series of Deploying On AWS Cloud Using Terraform π¨π»βπ». In this entire series, we will focus on our core concepts of Terraform by launching important basic services from scratch β¦