Learn, Understand and Explain
$ cat main.tf
terraform {
required_providers {
local = {
source ="hashicorp/local"
version ="1.4.0"
}
resource "local_file" "demo" {
filename = "/root/demo.txt"
content = "Demo text goes here"
Comments
Post a Comment