AWS EC2/RDS Instance Schedule
This article instructs on using the EC2/RDS scheduler, which starts and stops EC2/RDS instances based on the cloudaware:scheduler
tag value. The schedule tag value may consist of several fields separated by spaces, with each field in the format key=value
.
IAM Policy
Â
To grant Cloudaware necessary permissions, apply the following policy in your AWS console:
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "CaInstanceScheduler",
"Effect": "Allow",
"Action": [
"ec2:DescribeInstances",
"ec2:StartInstances",
"ec2:StopInstances",
"rds:DescribeDBInstances",
"rds:ListTagsForResource",
"rds:StartDBInstance",
"rds:StopDBInstance"
],
"Resource": [
"*"
]
}
]
}
You can also download the policy in your Cloudaware account. For that, go to Admin → AWS Accounts → ADD AMAZON ACCOUNT → Using Access & Secret Keys → select Instance Scheduler in 'CLOUDAWARE IAM POLICIES'.
Â
Tag Keys
Â
The list of tag keys that are used to set up instance start/stop:
Key | Description |
---|---|
tz (required) | Timezone to be used by the scheduler. Use Area/Location style from IANA Time Zone Database: tz=America/New_York |
default (required) | Default instance work hours. Can be either numeric or range with a hyphen separated by slashes |
mon, tue, wed, thu, fri, sat, sun (optional) | Instance work hours for the current day. The format is the same as the key Example 1. Work hours: default=9-16 sat=off sun=off The instance will run from 9:00 to 16:59 all days, except Saturday and Sunday. Example 2. Work hours: The instance will run only on Wednesday from 9:00 to 9:59 and from 14:00 to 17:59. |
policy (optional) | Scheduler mode. Can be |
Learn more about tagging resources in Cloudaware here.
Â
Tag Examples
Description:
instance work hours |
|
schedule timezone |
|
Â
Use the 'default=off' to specify exceptions in work hours for an instance. The instance will be off all time, except for specific periods, for example:
Description:
instance work hours |
|
schedule timezone |
|
Â
To configure an instance to operate only from 8 AM to 6 PM on weekdays and remain off during nights and weekends, use the following schedule:
Description:
instance work hours |
|
schedule timezone |
|
Â
For instances that operate across midnight, configure a sophisticated scheduling pattern. For example, if an instance runs from Monday through Friday, operating from midnight to 2 AM and again from 10 PM to midnight, the configuration may be:
Description:
instance work hours |
|
schedule timezone |
|
This approach allows for precise control over resource utilization and cost management.
Â