Day 63/64 - Terraform Variables and Terraform with AWS
Task-01: Creating a Local File with Terraform
Create a file named create_file.tf with the following content:
resource "local_file" "devops" {
filename = var.filename
content = var.content
}
Next, create a file named variables.tf with the follow...
ajayblog.com3 min read