When I have a custom Class, that includes Deployme...
# typescript
h
When I have a custom Class, that includes Deployments, Services, etc.. How do I export it, so pulumi deploys it?
w
You just have to create an instance of it. You can do that from your
index.ts
file or from the top level of any file you import from there.
h
Thanks, that sounds lovely simple 🙂