Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 573 Bytes

File metadata and controls

22 lines (16 loc) · 573 Bytes

Local Provider

Objectives

Learn how to use and run Terraform basic commands

  1. Create a directory called "my_first_run"
  2. Inside the directory create a file called "main.tf" with the following content
resource "local_file" "mario_local_file" {
    content  = "It's a me, Mario!"
    filename = "/tmp/who_is_it.txt"
}
  1. Run terraform init. What did it do?
  2. Run terraform plan. What Terraform is going to perform?
  3. Finally, run terraform apply and verify the file was created

Solution

Click here to view the solution