Thank you @dr_venture Makes sense on the service accounts. re using
State for this use case, i thought state is temporary and scoped to
micro service run. Can it persist the next day if i store a variable in
state? Is TTL configurable? Editing to add: So i see that i can use -1.
Does it mean it exists until explicitly deleted? May be i can overwrite
this on a daily basis. await state.put('key', { anObject: 'value' }, {
ttl: -1 }) I will explore the file lib and report back here! Appreciate
your ...