Day 63 - Terraform Variables
We can create a variable.tf file which will hold all the variables.
variable "filename" {
default = "/home/ubuntu/terrform-tutorials/terraform-variables/demo-var.txt"
}
variable "content" {
default = "This is coming from a variable which was updated...
agnes18.hashnode.dev4 min read