You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Support `cloudwatch_log_group_tags` parameter ([#571](https://github.com/terraform-aws-modules/terraform-aws-rds/issues/571)) ([73e33fe](https://github.com/terraform-aws-modules/terraform-aws-rds/commit/73e33feba5d907801791168ebf6d3132fbd646f5))
11
+
12
+
13
+
### Bug Fixes
14
+
15
+
* Update CI workflow versions to latest ([#570](https://github.com/terraform-aws-modules/terraform-aws-rds/issues/570)) ([220cc85](https://github.com/terraform-aws-modules/terraform-aws-rds/commit/220cc85dcdc8eb63772e25526db693dd563d40a1))
* Support `skip_destroy` for option and param groups and add `upgrade_storage_config` for replicas ([#559](https://github.com/terraform-aws-modules/terraform-aws-rds/issues/559)) ([3f73565](https://github.com/terraform-aws-modules/terraform-aws-rds/commit/3f73565f673d38bffac3c339f436782cd79f01fb))
Copy file name to clipboardExpand all lines: README.md
+7-3Lines changed: 7 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -204,13 +204,13 @@ Users have the ability to:
204
204
1. This module does not create RDS security group. Use [terraform-aws-security-group](https://github.com/terraform-aws-modules/terraform-aws-security-group) module for this.
205
205
2. For an RDS instance with `storage_type` using `gp3`, be aware that `iops` and `storage_throughput` cannot be specified if the `allocated_storage` value is below a per-`engine` threshold. See the [RDS User Guide](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html#gp3-storage) for details.
206
206
207
-
<!--BEGINNING OF PRE-COMMIT-TERRAFORM DOCS HOOK-->
| <aname="input_cloudwatch_log_group_kms_key_id"></a> [cloudwatch\_log\_group\_kms\_key\_id](#input\_cloudwatch\_log\_group\_kms\_key\_id)| The ARN of the KMS Key to use when encrypting log data |`string`|`null`| no |
249
249
| <aname="input_cloudwatch_log_group_retention_in_days"></a> [cloudwatch\_log\_group\_retention\_in\_days](#input\_cloudwatch\_log\_group\_retention\_in\_days)| The number of days to retain CloudWatch logs for the DB instance |`number`|`7`| no |
250
250
| <aname="input_cloudwatch_log_group_skip_destroy"></a> [cloudwatch\_log\_group\_skip\_destroy](#input\_cloudwatch\_log\_group\_skip\_destroy)| Set to true if you do not wish the log group (and any logs it may contain) to be deleted at destroy time, and instead just remove the log group from the Terraform state |`bool`|`null`| no |
251
+
| <aname="input_cloudwatch_log_group_tags"></a> [cloudwatch\_log\_group\_tags](#input\_cloudwatch\_log\_group\_tags)| Additional tags for the CloudWatch log group(s) |`map(string)`|`{}`| no |
251
252
| <aname="input_copy_tags_to_snapshot"></a> [copy\_tags\_to\_snapshot](#input\_copy\_tags\_to\_snapshot)| On delete, copy all Instance tags to the final snapshot |`bool`|`false`| no |
252
253
| <aname="input_create_cloudwatch_log_group"></a> [create\_cloudwatch\_log\_group](#input\_create\_cloudwatch\_log\_group)| Determines whether a CloudWatch log group is created for each `enabled_cloudwatch_logs_exports`|`bool`|`false`| no |
253
254
| <aname="input_create_db_instance"></a> [create\_db\_instance](#input\_create\_db\_instance)| Whether to create a database instance |`bool`|`true`| no |
@@ -308,11 +309,13 @@ No resources.
308
309
| <aname="input_network_type"></a> [network\_type](#input\_network\_type)| The type of network stack to use |`string`|`null`| no |
309
310
| <aname="input_option_group_description"></a> [option\_group\_description](#input\_option\_group\_description)| The description of the option group |`string`|`null`| no |
310
311
| <aname="input_option_group_name"></a> [option\_group\_name](#input\_option\_group\_name)| Name of the option group |`string`|`null`| no |
312
+
| <aname="input_option_group_skip_destroy"></a> [option\_group\_skip\_destroy](#input\_option\_group\_skip\_destroy)| Set to true if you do not wish the option group to be deleted at destroy time, and instead just remove the option group from the Terraform state |`bool`|`null`| no |
311
313
| <aname="input_option_group_timeouts"></a> [option\_group\_timeouts](#input\_option\_group\_timeouts)| Define maximum timeout for deletion of `aws_db_option_group` resource |`map(string)`|`{}`| no |
312
314
| <aname="input_option_group_use_name_prefix"></a> [option\_group\_use\_name\_prefix](#input\_option\_group\_use\_name\_prefix)| Determines whether to use `option_group_name` as is or create a unique name beginning with the `option_group_name` as the prefix |`bool`|`true`| no |
313
315
| <aname="input_options"></a> [options](#input\_options)| A list of Options to apply |`any`|`[]`| no |
314
316
| <aname="input_parameter_group_description"></a> [parameter\_group\_description](#input\_parameter\_group\_description)| Description of the DB parameter group to create |`string`|`null`| no |
315
317
| <aname="input_parameter_group_name"></a> [parameter\_group\_name](#input\_parameter\_group\_name)| Name of the DB parameter group to associate or create |`string`|`null`| no |
318
+
| <aname="input_parameter_group_skip_destroy"></a> [parameter\_group\_skip\_destroy](#input\_parameter\_group\_skip\_destroy)| Set to true if you do not wish the parameter group to be deleted at destroy time, and instead just remove the parameter group from the Terraform state |`bool`|`null`| no |
316
319
| <aname="input_parameter_group_use_name_prefix"></a> [parameter\_group\_use\_name\_prefix](#input\_parameter\_group\_use\_name\_prefix)| Determines whether to use `parameter_group_name` as is or create a unique name beginning with the `parameter_group_name` as the prefix |`bool`|`true`| no |
317
320
| <aname="input_parameters"></a> [parameters](#input\_parameters)| A list of DB parameters (map) to apply |`list(map(string))`|`[]`| no |
318
321
| <aname="input_password"></a> [password](#input\_password)| Password for the master DB user. Note that this may show up in logs, and it will be stored in the state file.<br/> The password provided will not be used if `manage_master_user_password` is set to true. |`string`|`null`| no |
@@ -335,6 +338,7 @@ No resources.
335
338
| <aname="input_tags"></a> [tags](#input\_tags)| A mapping of tags to assign to all resources |`map(string)`|`{}`| no |
336
339
| <aname="input_timeouts"></a> [timeouts](#input\_timeouts)| Updated Terraform resource management timeouts. Applies to `aws_db_instance` in particular to permit resource management times |`map(string)`|`{}`| no |
337
340
| <aname="input_timezone"></a> [timezone](#input\_timezone)| Time zone of the DB instance. timezone is currently only supported by Microsoft SQL Server. The timezone can only be set on creation. See MSSQL User Guide for more information |`string`|`null`| no |
341
+
| <aname="input_upgrade_storage_config"></a> [upgrade\_storage\_config](#input\_upgrade\_storage\_config)| Whether to upgrade the storage file system configuration on the read replica. Can only be set with replicate\_source\_db. |`bool`|`null`| no |
338
342
| <aname="input_username"></a> [username](#input\_username)| Username for the master DB user |`string`|`null`| no |
339
343
| <aname="input_vpc_security_group_ids"></a> [vpc\_security\_group\_ids](#input\_vpc\_security\_group\_ids)| List of VPC security groups to associate |`list(string)`|`[]`| no |
340
344
@@ -375,7 +379,7 @@ No resources.
375
379
| <aname="output_db_subnet_group_id"></a> [db\_subnet\_group\_id](#output\_db\_subnet\_group\_id)| The db subnet group name |
376
380
| <aname="output_enhanced_monitoring_iam_role_arn"></a> [enhanced\_monitoring\_iam\_role\_arn](#output\_enhanced\_monitoring\_iam\_role\_arn)| The Amazon Resource Name (ARN) specifying the monitoring role |
377
381
| <aname="output_enhanced_monitoring_iam_role_name"></a> [enhanced\_monitoring\_iam\_role\_name](#output\_enhanced\_monitoring\_iam\_role\_name)| The name of the monitoring role |
| <aname="output_postgres_db_parameter_group_id"></a> [postgres\_db\_parameter\_group\_id](#output\_postgres\_db\_parameter\_group\_id)| The db parameter group id |
96
96
| <aname="output_postgres_db_subnet_group_arn"></a> [postgres\_db\_subnet\_group\_arn](#output\_postgres\_db\_subnet\_group\_arn)| The ARN of the db subnet group |
97
97
| <aname="output_postgres_db_subnet_group_id"></a> [postgres\_db\_subnet\_group\_id](#output\_postgres\_db\_subnet\_group\_id)| The db subnet group name |
0 commit comments