Code Monkey home page Code Monkey logo

terraform-aws-rds-replica's Introduction

Project Banner

Latest ReleaseLast UpdatedSlack Community

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

πŸ‘½ Use Atmos with Terraform

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.

Introduction

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

Usage

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.

Makefile Targets

Available targets:

  help                                Help screen
  help/all                            Display help for all targets
  help/short                          This help short screen
  lint                                Lint terraform code

Requirements

No requirements.

Providers

Name Version
aws n/a

Modules

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

Resources

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

Inputs

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

Outputs

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

Related Projects

Check out these related projects.

Tip

Use Terraform Reference Architectures for AWS

Use Cloud Posse's ready-to-go terraform architecture blueprints for AWS to get up and running quickly.

βœ… We build it with you.
βœ… You own everything.
βœ… Your team wins.

Request Quote

πŸ“š 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.

Day-0: Your Foundation for Success

  • 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.

Request Quote

Day-2: Your Operational Mastery

  • 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.

Request Quote

✨ Contributing

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.

  1. Review our Code of Conduct and Contributor Guidelines.
  2. Fork the repo on GitHub
  3. Clone the project to your own machine
  4. Commit changes to your own branch
  5. Push your work back up to your fork
  6. 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!

🌎 Slack Community

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.

πŸ“° Newsletter

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.

πŸ“† Office Hours

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!

License

License

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.

Trademarks

All other trademarks referenced herein are the property of their respective owners.


Copyright Β© 2017-2024 Cloud Posse, LLC

README footer

Beacon

terraform-aws-rds-replica's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

terraform-aws-rds-replica's Issues

same_region replica does not require kms_key_id

When creating a same_region replica, the kms_id does not need to be set.

When it's set i get the following error:

aws_db_instance.default: Error creating DB Instance: InvalidParameterCombination: Your request does not require the KMS key parameter. Please remove the KMS key parameter and try your request again.
        status code: 400, request id: xxxxx-yyyyyy

Dependency Dashboard

This issue lists Renovate updates and detected dependencies. Read the Dependency Dashboard docs to learn more.

Repository problems

These problems occurred while renovating this repository. View logs.

  • WARN: Base branch does not exist - skipping

Ignored or Blocked

These are blocked by an existing closed PR and will not be recreated unless you click a checkbox below.

Detected dependencies

terraform
main.tf
  • github.com/cloudposse/terraform-aws-route53-cluster-hostname tags/0.2.5
  • github.com/cloudposse/terraform-null-label tags/0.3.3
  • github.com/cloudposse/terraform-null-label tags/0.3.3

  • Check this box to trigger a request for Renovate to run again on this repository

Passing subnet-ids dynamically is failing.

Hello friends,

I am trying to create a vpc, and replicate an existing RDS instance. It's failing with error below :

Error: Incorrect attribute value type

  on .terraform/modules/rds_replica/main.tf line 68, in resource "aws_db_subnet_group" "default":
  68:   subnet_ids = ["${var.subnet_ids}"]

Inappropriate value for attribute "subnet_ids": element 0: string required.

What am I doing wrong?

COde :


module "vpc" {
  source  = "terraform-aws-modules/vpc/aws"
  version = "2.6.0"

  name                 = "terraform-vpc"
  cidr                 = "13.0.0.0/16"
  azs                  = data.aws_availability_zones.available.names
  private_subnets      = ["13.0.1.0/24", "13.0.2.0/24", "13.0.3.0/24"]
  public_subnets       = ["13.0.4.0/24", "13.0.5.0/24", "13.0.6.0/24"]
}

module "rds_replica" {
  source                      = "git::https://github.com/cloudposse/terraform-aws-rds-replica.git?ref=master"
  subnet_ids                  = ["${element(module.vpc.public_subnets, 0)}", "${element(module.vpc.public_subnets, 1)}"]
}

)

Replicas created with this module can't be destroyed

Replicas don't support final snapshots, but this module defines a final snapshot identifier. This causes an error preventing the replica instance from being destroyed.

Error: error deleting Database Instance "measurabl-ops-rds-app-replica-1": InvalidParameterCombination: FinalDBSnapshotIdentifier can not be specified when deleting a replica instance

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.