Releases: skyscrapers/terraform-rds
Make RDS snapshots system more robust
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
-
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
5.0.1 Add backup_retention_period variable for teamleader rds read replica …
5.0.0 Update code to terraform 0.12
This release makes all the terraform code compatible with terraform 0.12
4.3.1
4.3.0: Publish RDS/Aurora logs to Cloudwatch Logs (#34)
* 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
4.1.0
Fix security group lifecycle
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]
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)}"
}