Reputation: 634
How can I show AWS EC2 Auto Scaling's Scheduled Scaling configuration on web Console?
As the Official Documentation says, with aws-cli, the size of Auto Scaling Group can be changed based on time like the following:
$ aws autoscaling put-scheduled-update-group-action --scheduled-action-name my-schedule --auto-scaling-group-name my-group --recurrence '0 0 * * *' --desired-capacity 1
.
However, I can't find a way to show this configuration on web Console. Is this information only available through aws-cli?
Upvotes: 1
Views: 315
Reputation: 269091
Good news... this feature has just been added!
See: Create a Scheduled Action Using the Console
Upvotes: 1