github.com/myhau/pulumi/pkg/v3@v3.70.2-0.20221116134521-f2775972e587/codegen/testing/test/testdata/transpiled_examples/readme-pp/readme.pp (about)

     1  output strVar {
     2  	__logicalName = "strVar"
     3  	value = "foo"
     4  }
     5  
     6  output arrVar {
     7  	__logicalName = "arrVar"
     8  	value = [
     9  		"fizz",
    10  		"buzz"
    11  	]
    12  }
    13  
    14  output readme {
    15  	__logicalName = "readme"
    16  	value = readFile("./Pulumi.README.md")
    17  }