github.com/darmach/terratest@v0.34.8-0.20210517103231-80931f95e3ff/test/fixtures/terraform-output/output.tf (about)

     1  output "bool" {
     2    value = true
     3  }
     4  
     5  output "string" {
     6    value = "This is a string."
     7  }
     8  
     9  output "number" {
    10    value = 3.14
    11  }
    12  
    13  output "number1" {
    14    value = 3
    15  }