I need some help setting up the schedule for a lambda function that I deploy with serverless framework. It should start running daily, but only 10 days after it has been deployed.
Is this possible?
functions:
prerequisites:
handler: prerequisites.prerequisites
keyRotation:
handler: iamKeyRotation.main
events:
- schedule: cron(0 6 * * ? *)
I just set the function to run every day.