github.com/opentofu/opentofu@v1.7.1/internal/command/e2etest/testdata/multiple-run-blocks/main.tf (about)

     1  resource "terraform_data" "provision" {
     2    connection {
     3      host = "localhost"
     4    }
     5    provisioner "remote-exec" {
     6      inline = ["echo test"]
     7    }
     8  }