github.com/swisspost/terratest@v0.0.0-20230214120104-7ec6de2e1ae0/test/fixtures/terraform-validation-valid/main.tf (about)

     1  # This is a test resource that echoes the message specified by var.message
     2  resource "null_resource" "greet" {
     3    count = 5
     4  
     5    triggers = {
     6      run_always = timestamp()
     7    }
     8  
     9    provisioner "local-exec" {
    10      command = "echo ${var.message}"
    11    }
    12  }