Skip to content

Releases: skyscrapers/terraform-rds

Make RDS snapshots system more robust

01 Oct 08:14
57069c4
Compare
Choose a tag to compare

This release includes fixed for the RDS snapshot replicator and adds monitoring to it

5.1.0 Adds option to ignore name changes to sg

26 Aug 13:56
91cfa58
Compare
Choose a tag to compare
  • adds option to ignore name changes to sg to avoid resource recreation and possible downtime with older module versions

  • adding performance insight param

  • add auto_minor_version_upgrade param

Add backup_retention_period variable for rds-replica module

02 Aug 11:43
Compare
Choose a tag to compare
5.0.1

Add backup_retention_period variable for teamleader rds read replica …

5.0.0 Update code to terraform 0.12

12 Jun 14:46
Compare
Choose a tag to compare

This release makes all the terraform code compatible with terraform 0.12

4.3.1

27 May 10:05
25e7f2d
Compare
Choose a tag to compare
Bump RDS engine_version to 5.7.25

4.3.0: Publish RDS/Aurora logs to Cloudwatch Logs (#34)

13 Mar 12:01
Compare
Choose a tag to compare
* Update copyright year in LICENSE file.

* Support to publish RDS/Aurora logs to Cloudwatch Logs

* Update Aurora example with `enabled_cloudwatch_logs_exports` functionality.

* Updated the description of the `enabled_cloudwatch_logs_exports` variable in all modules.

4.2.0

29 Jan 09:36
7245a42
Compare
Choose a tag to compare

This release fixes a bug introduces in version 4.0 that was setting a default value for the security groups parameters in the rds modules. We've removed the default value so that you will avoid possible mistakes.

4.1.0

23 Jan 13:09
ea6efd1
Compare
Choose a tag to compare

This release adds the option to specify maintenance_window and disable auto_minor_version_upgrade

Fix security group lifecycle

17 Dec 16:13
3421d0d
Compare
Choose a tag to compare
Add a create_before_destroy lifecycle rule to some resources (#30)

When changing names, the new security group and parameter group
should be created before destroying the old ones

Change in how security_groups is provided [rds module]

30 Nov 08:53
95bd914
Compare
Choose a tag to compare

To avoid issues with Terraform not being able to compute the value of count (e.g. * module.rds_database.aws_security_group_rule.rds_sg_in: aws_security_group_rule.rds_sg_in: value of 'count' cannot be computed), you now have to provide the number of security groups provided in the security_groups variable, via the security_groups_count variable.

If the security groups you're providing to the rds module are already created, and you're fetching them from a data source or have them hard-coded, you could still use the length function to compute the value of security_groups_count, like:

variable "security_groups" {
  default = ["sg-12345676", "sg-9876543"]
}

module "rds" {
  source = "..."
  ...
  security_groups = "${var.security_groups}"
  security_groups_count = "${length(var.security_groups)}"
}