Is there a way to ensure pulumi resources defined ...
# general
t
Is there a way to ensure pulumi resources defined in a module within a typescript program are included in the stack without needing to export them from the
index.ts
file? Some resources, especially the new
Chart
resource inflate pulumi state dramatically, and I'd like to avoid that, but I still want them to be managed by pulumi (even if no other resources depend upon them), but don't want a massive
index.ts
file either. I could likely just export some sub-attribute or something to ensure it's part of the graph, but that feels inelegant also.