shy-house-53993
04/22/2021, 7:35 AMimport * as aws from '@pulumi/aws';
aws.cloudwatch.onSchedule('log-something', 'rate(5 minutes)', (e) => {
console.log(`Hello from Scheduler.`);
});
attach the AWSLambdaBasicExecutionRole
policy by default. Without that basic logging doesn't even function.brave-planet-10645
04/22/2021, 10:50 AMarn:aws:iam::aws:policy/AWSLambda_FullAccess
policy. I'm guessing that someone thought that might have been enough but it's obviously not. I'll raise a ticket to add the basic policy as wellshy-house-53993
04/22/2021, 11:17 AMbillowy-army-68599
04/22/2021, 3:19 PM