Releases: cloudposse/terraform-aws-rds
Releases · cloudposse/terraform-aws-rds
0.6.0 Add possibility to use an existing KMS key to encrypt storage
what
- Add
kms_key_arnvariable
why
- Use an existing KMS key to encrypt storage
0.5.0 Add support for license_model and db_option_group parameters
what
- Add support for
license_modelparameter - Add support for
db_option_groupparameter
why
license_model parameterrequired for some engines like SQL Server. Defaults to empty string, and AWS will fill this in with open source database engines, but it's required for commercial ones- The module will always create
db_option_group, but the user can point to an existing one - The parameters are supported by https://www.terraform.io/docs/providers/aws/r/db_instance.html
0.4.4 Fix `vpc_security_group_ids`
0.4.3
0.4.2: Update readme yaml file and rebuild md
what
- updated
README.yamlfile - add tags and categories
- rebuild
README.mdfile
why
- need to add categories and tags so we can pull them into the documentation
0.4.1: Added enabled option (#18)
* Added enabled option * Address PR comments
0.4.0
what
- Make
database_useranddatabase_passwordoptional - Make
dns_zone_idoptional
why
- #15
- If
snapshot_identifieris provided to restore the database from the snapshot,database_useranddatabase_passwordare not required and TF should not ask for it - Not all applications require creating Route53 sub-domains for the DB host
Regenerate README.md
what
- Regenerate
README.md
why
- Previous version of build-harness has some typos
Migrate to README.yaml format
what
- Add
README.yaml
why
- Standardize README
0.2.8
what
- Use
splat + joinsyntax for outputs from resources with counts - Added TravisCI
why
- To address the issue #10
- To fix terraform warnings
Warning: output "parameter_group_id": must use splat syntax to access aws_db_parameter_group.default attribute "id", because it has "count" set; use aws_db_parameter_group.default.*.id to obtain a list of the attributes across all instances