Terraform module to provision AWS RDS
replica instances. These are best suited for reporting purposes.
IMPORTANT It is not possible to create a read replica for a DB Instance that belongs to an Aurora DB Cluster.
Tip
Cloud Posse uses atmos
to easily orchestrate multiple environments using Terraform.
Works with Github Actions, Atlantis, or Spacelift.
Watch demo of using Atmos with Terraform
Example of running
atmos
to manage infrastructure from our Quick Start tutorial.
The module will create an RDS replica instance:
- RDS Replica instance (MySQL, Postgres, SQL Server, Oracle)
- RDS Subnet Group
- RDS DB Security Group
- DNS Record in Route53 for the DB endpoint
module "rds_replica" {
source = "git::https://github.com/cloudposse/terraform-aws-rds-replica.git?ref=master"
namespace = "eg"
stage = "prod"
name = "reporting"
replicate_source_db = "eg-prod-db
dns_zone_id = "Z89FN1IW975KPE"
host_name = "reporting"
security_group_ids = ["sg-xxxxxxxx"]
database_port = 3306
multi_az = "true"
storage_type = "gp2"
storage_encrypted = "true"
instance_class = "db.t2.medium"
publicly_accessible = "false"
subnet_ids = ["subnet-xxxxxxxxx", "subnet-xxxxxxxxx"]
vpc_id = "vpc-xxxxxxxx"
auto_minor_version_upgrade = "true"
allow_major_version_upgrade = "false"
apply_immediately = "false"
maintenance_window = "Mon:03:00-Mon:04:00"
skip_final_snapshot = "false"
copy_tags_to_snapshot = "true"
backup_retention_period = 7
backup_window = "22:00-03:00"
}
Important
In Cloud Posse's examples, we avoid pinning modules to specific versions to prevent discrepancies between the documentation and the latest released versions. However, for your own projects, we strongly advise pinning each module to the exact version you're using. This practice ensures the stability of your infrastructure. Additionally, we recommend implementing a systematic approach for updating versions to avoid unexpected changes.
Available targets:
help Help screen
help/all Display help for all targets
help/short This help short screen
lint Lint terraform code
No requirements.
Name | Version |
---|---|
aws | n/a |
Name | Source | Version |
---|---|---|
dns_host_name | git::https://github.com/cloudposse/terraform-aws-route53-cluster-hostname.git | tags/0.2.5 |
final_snapshot_label | git::https://github.com/cloudposse/terraform-null-label.git | tags/0.3.3 |
label | git::https://github.com/cloudposse/terraform-null-label.git | tags/0.3.3 |
Name | Type |
---|---|
aws_db_instance.default | resource |
aws_db_subnet_group.default | resource |
aws_kms_key.default | resource |
aws_security_group.default | resource |
aws_security_group_rule.allow_egress | resource |
aws_security_group_rule.allow_ingress | resource |
Name | Description | Type | Default | Required |
---|---|---|---|---|
allow_major_version_upgrade | Allow major version upgrade | string |
"false" |
no |
apply_immediately | Specifies whether any database modifications are applied immediately, or during the next maintenance window | string |
"false" |
no |
attributes | Additional attributes (e.g. 1 ) |
list(string) |
[] |
no |
auto_minor_version_upgrade | Allow automated minor version upgrade (e.g. from Postgres 9.5.3 to Postgres 9.5.4) | string |
"true" |
no |
backup_retention_period | Backup retention period in days. Must be > 0 to enable backups | number |
0 |
no |
backup_window | When AWS can perform DB snapshots, can't overlap with maintenance window | string |
"22:00-03:00" |
no |
copy_tags_to_snapshot | Copy tags from DB to a snapshot | string |
"true" |
no |
database_port | Database port (_e.g._ 3306 for MySQL ). Used in the DB Security Group to allow access to the DB instance from the provided security_group_ids |
any |
n/a | yes |
db_parameter | A list of DB parameters to apply. Note that parameters may differ from a DB family to another | list(string) |
[] |
no |
delimiter | Delimiter to be used between name , namespace , stage and attributes |
string |
"-" |
no |
dns_zone_id | The ID of the DNS Zone in Route53 where a new DNS record will be created for the DB host name | string |
"" |
no |
enabled | Set to false to prevent the module from creating any resources | string |
"true" |
no |
final_snapshot_identifier | Final snapshot identifier e.g.: some-db-final-snapshot-2015-06-26-06-05 | string |
"" |
no |
host_name | The DB host name created in Route53 | string |
"db" |
no |
instance_class | Class of RDS instance | string |
n/a | yes |
iops | The amount of provisioned IOPS. Setting this implies a storage_type of 'io1'. Default is 0 if rds storage type is not 'io1' | string |
"0" |
no |
kms_key_id | The ARN for the KMS encryption key. If creating an encrypted replica, set this to the destination KMS ARN | string |
"" |
no |
maintenance_window | The window to perform maintenance in. Syntax: 'ddd:hh24:mi-ddd:hh24:mi' UTC | string |
"Mon:03:00-Mon:04:00" |
no |
monitoring_interval | The interval, in seconds, between points when Enhanced Monitoring metrics are collected for the DB instance. To disable collecting Enhanced Monitoring metrics, specify 0. Valid Values are 0, 1, 5, 10, 15, 30, 60. | string |
"0" |
no |
multi_az | Set to true if multi AZ deployment must be supported | string |
"false" |
no |
name | The Name of the application or solution (e.g. bastion or portal ) |
string |
n/a | yes |
namespace | Namespace (e.g. eg or cp ) |
string |
n/a | yes |
parameter_group_name | Name of the DB parameter group to associate | string |
"" |
no |
publicly_accessible | Determines if database can be publicly available (NOT recommended) | string |
"false" |
no |
replicate_source_db | Specifies that this resource is a Replicate database, and to use this value as the source database. This correlates to the identifier of another Amazon RDS Database to replicate. Note that if you are creating a cross-region replica of an encrypted database you will also need to specify a kms_key_id. See DB Instance Replication and Working with PostgreSQL and MySQL Read Replicas for more information on using Replication. | any |
n/a | yes |
same_region | Whether this replica is in the same region as the master. | string |
"false" |
no |
security_group_ids | The IDs of the security groups from which to allow ingress traffic to the DB instance |
list(string) |
[] |
no |
skip_final_snapshot | If true (default), no snapshot will be made before deleting DB | string |
"true" |
no |
snapshot_identifier | Snapshot identifier e.g: rds:production-2015-06-26-06-05. If specified, the module create cluster from the snapshot | string |
"" |
no |
stage | Stage (e.g. prod , dev , staging ) |
string |
n/a | yes |
storage_encrypted | Specifies whether the DB instance is encrypted. The default is false if not specified. | string |
"false" |
no |
storage_type | One of 'standard' (magnetic), 'gp2' (general purpose SSD), or 'io1' (provisioned IOPS SSD). | string |
"standard" |
no |
subnet_ids | List of subnets for the DB | list(string) |
n/a | yes |
tags | Additional tags (e.g. map(BusinessUnit ,XYZ ) |
map(string) |
{} |
no |
vpc_id | VPC ID the DB instance will be created in | string |
n/a | yes |
Name | Description |
---|---|
hostname | DNS host name of the instance |
instance_address | Address of the instance |
instance_endpoint | DNS Endpoint of the instance |
instance_id | ID of the instance |
security_group_id | ID of the Security Group |
subnet_group_id | ID of the Subnet Group |
Check out these related projects.
- terraform-aws-rds - Terraform module to provision AWS RDS instances for MySQL or Postgres
- terraform-aws-rds-cluster - Terraform module to provision an RDS Aurora cluster for MySQL or Postgres
- terraform-aws-rds-cloudwatch-sns-alarms - Terraform module that configures important RDS alerts using CloudWatch and sends them to an SNS topic
Tip
Use Cloud Posse's ready-to-go terraform architecture blueprints for AWS to get up and running quickly.
β
We build it together with your team.
β
Your team owns everything.
β
100% Open Source and backed by fanatical support.
π Learn More
Cloud Posse is the leading DevOps Accelerator for funded startups and enterprises.
Your team can operate like a pro today.
Ensure that your team succeeds by using Cloud Posse's proven process and turnkey blueprints. Plus, we stick around until you succeed.
- Reference Architecture. You'll get everything you need from the ground up built using 100% infrastructure as code.
- Deployment Strategy. Adopt a proven deployment strategy with GitHub Actions, enabling automated, repeatable, and reliable software releases.
- Site Reliability Engineering. Gain total visibility into your applications and services with Datadog, ensuring high availability and performance.
- Security Baseline. Establish a secure environment from the start, with built-in governance, accountability, and comprehensive audit logs, safeguarding your operations.
- GitOps. Empower your team to manage infrastructure changes confidently and efficiently through Pull Requests, leveraging the full power of GitHub Actions.
- Training. Equip your team with the knowledge and skills to confidently manage the infrastructure, ensuring long-term success and self-sufficiency.
- Support. Benefit from a seamless communication over Slack with our experts, ensuring you have the support you need, whenever you need it.
- Troubleshooting. Access expert assistance to quickly resolve any operational challenges, minimizing downtime and maintaining business continuity.
- Code Reviews. Enhance your teamβs code quality with our expert feedback, fostering continuous improvement and collaboration.
- Bug Fixes. Rely on our team to troubleshoot and resolve any issues, ensuring your systems run smoothly.
- Migration Assistance. Accelerate your migration process with our dedicated support, minimizing disruption and speeding up time-to-value.
- Customer Workshops. Engage with our team in weekly workshops, gaining insights and strategies to continuously improve and innovate.
This project is under active development, and we encourage contributions from our community.
Many thanks to our outstanding contributors:
For π bug reports & feature requests, please use the issue tracker.
In general, PRs are welcome. We follow the typical "fork-and-pull" Git workflow.
- Review our Code of Conduct and Contributor Guidelines.
- Fork the repo on GitHub
- Clone the project to your own machine
- Commit changes to your own branch
- Push your work back up to your fork
- Submit a Pull Request so that we can review your changes
NOTE: Be sure to merge the latest changes from "upstream" before making a pull request!
Join our Open Source Community on Slack. It's FREE for everyone! Our "SweetOps" community is where you get to talk with others who share a similar vision for how to rollout and manage infrastructure. This is the best place to talk shop, ask questions, solicit feedback, and work together as a community to build totally sweet infrastructure.
Sign up for our newsletter and join 3,000+ DevOps engineers, CTOs, and founders who get insider access to the latest DevOps trends, so you can always stay in the know. Dropped straight into your Inbox every week β and usually a 5-minute read.
Join us every Wednesday via Zoom for your weekly dose of insider DevOps trends, AWS news and Terraform insights, all sourced from our SweetOps community, plus a live Q&A that you canβt find anywhere else. It's FREE for everyone!
Preamble to the Apache License, Version 2.0
Complete license is available in the LICENSE
file.
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
All other trademarks referenced herein are the property of their respective owners.
Copyright Β© 2017-2024 Cloud Posse, LLC