java-tutorials/terraform/hello-terraform/main.tf

8 lines
132 B
Terraform
Raw Normal View History

2020-03-29 10:49:46 -04:00
provider "local" {
version = "~> 1.4"
}
resource "local_file" "hello" {
content = "Hello, Terraform"
filename = "hello.txt"
}