<@ULHPURYFR> Only things exported from the entry p...
# typescript
s
@fierce-cpu-94517 Only things exported from the entry point module should become stack outputs
f
right. I have in
index.ts
Copy code
export * from "./ec2"
export * from "./s3"
So is it a best practice to manage all my stack outputs as exports in
index.ts
? for example:
Copy code
import * as ec2 from './ec2'

export const ec2.myInstance.publicIP
s
Yes - that’s exactly the idea
f
Thanks!