AWS RDS Database Running Scheduler
Project description
AWS RDS Database Running Schedule Stack
This AWS CDK Construct Stack controls the starting and stopping of RDS DB instances and clusters based on specified tags, ensuring they only run during working hours. It uses EventBridge Scheduler to trigger a StepFunctions State Machine at the start and end of the working hours(default 07:50(UTC) - 21:10(UTC)), which then starts or stops the databases depending on the mode.
[!WARNING] v2.3.0: Stack props add option resourceNamingOption default ResourceNamingType.DEFAULT is cdk generated name f you want to maintain compatibility with versions below
v2.3.0
, please include the following settings (ResourceNamingType.AUTO).new RDSDatabaseRunningScheduleStack(app, 'RDSDatabaseRunningScheduleStack', { targetResource: { tagKey: 'WorkHoursRunning', tagValues: ['YES'], }, resourceNamingOption: { type: ResourceNamingType.AUTO, // HERE }, });
Fixed
- RDS Aurora Cluster
- RDS Instance
Resources
This construct creating resource list.
- EventBridge Scheduler execution role
- EventBridge Scheduler
- StepFunctions StateMahcine (star or stop controle)
- StepFunctions StateMahcine execution role
Install
TypeScript
install by npm
npm install @gammarers/aws-rds-database-running-schedule-stack
install by yarn
yarn add @gammarers/aws-rds-database-running-schedule-stack
install by pnpm
pnpm add @gammarers/aws-rds-database-running-schedule-stack
install by bun
bun add @gammarers/aws-rds-database-running-schedule-stack
Python
pip install gammarers.aws-rds-database-running-schedule-stack
C# / .NET
dotnet add package Gammarers.CDK.AWS.RdsDatabaseRunningScheduleStack
Example
import { RdsDatabaseRunningScheduler, DatabaseType } from '@gammarer/aws-rds-database-running-schedule-stack';
new RDSDatabaseRunningScheduleStack(app, 'RDSDatabaseRunningScheduleStack', {
targetResource: {
tagKey: 'WorkHoursRunning', // already tagging to rds instance or cluster
tagValues: ['YES'], // already tagging to rds instance or cluster
},
enableScheduling: true,
startSchedule: {
timezone: 'Asia/Tokyo',
minute: '55',
hour: '8',
week: 'MON-FRI',
},
stopSchedule: {
timezone: 'Asia/Tokyo',
minute: '5',
hour: '19',
week: 'MON-FRI',
},
resourceNamingOption: {
type: ResourceNamingType.AUTO, // DEFAULT or AUTO or CUSTOM
},
});
License
This project is licensed under the Apache-2.0 License.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file gammarers_aws_rds_database_running_schedule_stack-2.3.0.tar.gz
.
File metadata
- Download URL: gammarers_aws_rds_database_running_schedule_stack-2.3.0.tar.gz
- Upload date:
- Size: 60.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4d8e3130d45bd282b181737159571dcf61ac9f3db40ba34cdff6cade40892dfd |
|
MD5 | 12cc6d72765cafef1f71a9b3f874a300 |
|
BLAKE2b-256 | b2779ea6e60760d28be28eb05c53a2bbfbf3e6e164c33b0e99cf52f154c9f966 |
File details
Details for the file gammarers.aws_rds_database_running_schedule_stack-2.3.0-py3-none-any.whl
.
File metadata
- Download URL: gammarers.aws_rds_database_running_schedule_stack-2.3.0-py3-none-any.whl
- Upload date:
- Size: 59.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e82346ee20d40c76fb4f7e9b1fa5f454dbf7698d696ee1faf497588cdfb1b81f |
|
MD5 | 067449d00a38672be2b299ff6ee3af6e |
|
BLAKE2b-256 | a95cec676e71a1e393601f82cab39a5770b9a020f54f3577dd72f091be73928f |