Terraform is OpenSource infrastructure as a code software tool. With the help of Terraform you can provision infrastructure on cloud platform such AWS(https://aws.amazon.com/), Google Cloud(https://cloud.google.com/), Azure(https://azure.microsoft.com/en-us/), DigitalOcean(https://www.digitalocean.com/), OpenShift(https://www.openshift.com/) and many more...cloud provider
But before you start working with Terraform you must understand different types of variables provided by the terraform -
- string - It will hold string values
- number - It will hold number values
- bool - It will hold boolean value .i.e. true, false
- list - It is used for the collection of values. Collection can be of type string, number
- map - When you need to create key-value pair then need to use map variable type
Top comments (0)