jordanmaxfightcamp

Results 1 comments of jordanmaxfightcamp

I did find a workaround: ``` await serverless.init(); const service = await serverless.variables.populateService(); const resources = service.resources.Resources; let tables = Object.keys(resources) .map((name) => resources[name]) .filter((r) => r.Type === 'AWS::DynamoDB::Table') .map((r)...