Releases: cloudposse/terraform-aws-rds
Releases · cloudposse/terraform-aws-rds
0.19.0 Add Monitoring Interval
what
monitoring_interval
variable added
why
- This allow enabled the monitoring interval for the RDS instance
0.18.0 Add identifier of the CA certificate for the DB instance
what
- Add identifier of the CA certificate for the DB instance
why
- Add missing
ca_cert_identifier
setting, it's supported on RDS instances
0.17.0 Use the latest label module to support the `environment` attribute
what
- Use the latest label module to support the
environment
attribute
why
- Allow the
environment
attribute to be passed to included modules - Useful for naming resources
0.9.3 Bugfix: support old Postgres versions and allow upgrade
what
- Bugfix: support old Postgres versions
- Allow database upgrade
why
- The code failed for Postgres engine versions below 10 because the
computed_major_engine_version
returned 9 instead of 9.x. - It also failed for upgrades to an existing database because of issues with creating an option group with the same
0.16.0 Add variable `enabled_cloudwatch_logs_exports`
what
- Add variable
enabled_cloudwatch_logs_exports
why
- RDS supports
enabled_cloudwatch_logs_exports
to enable exporting to CloudWatch logs
0.15.0 Add RDS Performance Insights arguments
0.14.0 Add standalone ingress/egress rules to the RDS security group. Change AWS region for tests
what
- Add standalone ingress/egress rules to the RDS security group
- Change AWS region for tests
why
-
Inlined security group rules force re-creation when a separate rule is added to the security group in a top-level module using
aws_security_group_rule
(aws_security_group_rule
and inline rules don't mix) -
us-west-1
is a limited region, e.g. it has different names of AZs for different AWS accounts
0.9.2 Add standalone ingress/egress rules to the RDS security group. Add `allowed_cidr_blocks`
what
- Add standalone ingress/egress rules to the RDS security group
- Add
allowed_cidr_blocks
why
- Inlined security group rules force re-creation when a separate rule is added to the security group in a top-level module using
aws_security_group_rule
(aws_security_group_rule
and inline rules don't mix)
notes
- This is for TF 0.11
- For TF 0.12, see https://github.com/cloudposse/terraform-aws-rds/releases/tag/0.14.0
0.13.0 Add `allowed_cidr_blocks` support for RDS Security Group
what
- Add
allowed_cidr_blocks
support for RDS Security Group
why
- Allow the CIDR blocks to access the RDS database
- Similar to https://github.com/cloudposse/terraform-aws-rds-cluster/blob/master/variables.tf#L172