Skip to content

Commit 0a6d49b

Browse files
authored
[TK-78009] Fix propagation of non-fatal Diagnostics in the type morphing logic (#1813)
* Fix type "morpher" to correctly bubble up non-error diagnostics
1 parent df01876 commit 0a6d49b

File tree

3 files changed

+191
-102
lines changed

3 files changed

+191
-102
lines changed

_examples/kubernetes_manifest/deployment/deployment.tf

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,18 @@ resource "kubernetes_manifest" "test-deployment" {
3434
"protocol" = "TCP"
3535
},
3636
]
37+
"volumeMounts" = [
38+
{
39+
"mountPath" = "/foobar/"
40+
"name" = "vol-foobar"
41+
},
42+
]
43+
},
44+
],
45+
"volumes" = [
46+
{
47+
"emptyDir" = {}
48+
"name" = "vol-foobar"
3749
},
3850
]
3951
}

0 commit comments

Comments
 (0)