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

     1  output "mogwai" {
     2    value = {
     3      guitar_1 = "Stuart Braithwaite"
     4      guitar_2 = "Barry Burns"
     5      bass     = "Dominic Aitchison"
     6      drums    = "Martin Bulloch"
     7    }
     8  }
     9  
    10  output "not_a_map" {
    11    value = "This is not a map."
    12  }
    13