run script everyday on ec2 instance

Viewed 28

I want to run shell script on ec2 instance every day, cronjob has disabled. how can we run script using python boto3.

Do we have any options to schedule a job in aws ec2 instance without cron

1 Answers

You can use Event Bridge with Systems Manager to run a script every day without using cron

Related