This message was deleted.
# general
s
This message was deleted.
i
it comes down to what you've written in service-account/index.ts . if you define resources at the module level, they should be created on import. personally (and this applies to most things I do in typescript modules) I prefer exporting functions so that you have more control over when things are defined/run. so for example you could have a function like
export function getServiceAccounts(dependencies: any[]){/* . . . */}
defined in service-account/index.ts