Improve this page

Back to AWS Terraform templates index <–

AWS Relational Database Service with Terraform

Aws_Relational Database Service by the Sogeti community.

Template Locations

Online documentation

Template reference
Service description

module "AWS_Relational_Database_Service_Mysql" {
    rds_instance_identifier = "database-1"
    db_instance             = "db.t2.micro"
    engine                  = "mysql"
    engine_version          = "5.7"
    storage_type            = "gp2"
    allocated_storage       = "20"
    backup_retention_period = "10"
    backup_window           = "10:00-10:30"
    maintenance_window      = "sun:03:00-sun:03:30"
    max_allocated_storage   = "50"
}