From e231a550240550bcbdab63c2ba5fc76ec2d4f1dd Mon Sep 17 00:00:00 2001 From: Julien Poissonnier Date: Mon, 24 Jun 2024 13:44:59 +0200 Subject: [PATCH] update testdata --- .../testing/test/testdata/typeddict-pp/typeddict.pp | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 pkg/pulumiyaml/testing/test/testdata/typeddict-pp/typeddict.pp diff --git a/pkg/pulumiyaml/testing/test/testdata/typeddict-pp/typeddict.pp b/pkg/pulumiyaml/testing/test/testdata/typeddict-pp/typeddict.pp new file mode 100644 index 00000000..85a3a48b --- /dev/null +++ b/pkg/pulumiyaml/testing/test/testdata/typeddict-pp/typeddict.pp @@ -0,0 +1,12 @@ +resource "main" "typeddict:index:ExampleComponent" { + myType = { + stringProp = "hello", + nestedProp = { + nestedStringProp = "world", + nestedNumberProp = 123 + } + } + externalInput = { + indexDocument = "index.html" + } +}