instance-scheduler-on-aws
instance-scheduler-on-aws copied to clipboard
A cross-account and cross-region solution that allows customers to automatically start and stop EC2 and RDS Instances
Makes this file govcloud compatible
add your bucket name to line 1134
Templates updated for use in both validated standard AWS regions and AWS GovCloud (US) regions via the AWS::Partition parameter. Successful CloudFormation build in both partitions (Regions built in: us-east-1, us-gov-west-1,...
const ec2Permissions = new iam.Policy(this, "Ec2Permissions", { statements: [ new PolicyStatement({ actions: [ 'ec2:ModifyInstanceAttribute' 'kms:CreateGrant', ], effect: Effect.ALLOW, resources: [ cdk.Fn.sub("arn:${AWS::Partition}:ec2:*:${AWS::AccountId}:instance/*") ] }), ec2PolicyAssumeRoleStatement ], roles: [schedulerRole] }) As you...
*Description of changes:* When instances are managed by AWS License Manager, the scheduler fails to query the license-configurations API. This is easily fixed by including the appropriate IAM resource in...
I'd like to see a feature added where you can override the stack/schedule time zone on individual periods. Similar to how you can override the stack default timezone on a...
I need to execute the scheduler as test or as triggered by a UI that we are developing for our use case. One possibility is to mimic the event from...
**Describe the bug** I've followed the CloudFormation deployment instructions and when targeting 1 instance everything works as it should. When I try to scale up I start to get the...
**Describe the bug** A terminated ec2 instance stays inside the list of ec2 instances for some time (minutes to hours) with the state "Terminated". When having a terminated instance in...
The timezone of auto tagging seems to be wrong. I created a period and and schedule like: ``` $ scheduler-cli create-period --stack --name --begintime 10:45 --endtime 11:00 --weekdays mon-fri {...