From 8b906169527162faa8fc928aa9b5edf6cfbc1f5e Mon Sep 17 00:00:00 2001 From: Lorenzo Maffioli <63981558+lorenzophys@users.noreply.github.com> Date: Wed, 10 Jan 2024 16:56:59 +0100 Subject: [PATCH] fix: Align the default value of `manage_master_user_password` in the instance sub-module with the root module (#531) chore: fix the default value of manage_master_user_password --- modules/db_instance/README.md | 2 +- modules/db_instance/variables.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/db_instance/README.md b/modules/db_instance/README.md index bcc5ccdf..31e4dcfc 100644 --- a/modules/db_instance/README.md +++ b/modules/db_instance/README.md @@ -70,7 +70,7 @@ No modules. | [kms\_key\_id](#input\_kms\_key\_id) | The ARN for the KMS encryption key. If creating an encrypted replica, set this to the destination KMS ARN. If storage\_encrypted is set to true and kms\_key\_id is not specified the default KMS key created in your account will be used | `string` | `null` | no | | [license\_model](#input\_license\_model) | License model information for this DB instance. Optional, but required for some DB engines, i.e. Oracle SE1 | `string` | `null` | no | | [maintenance\_window](#input\_maintenance\_window) | The window to perform maintenance in. Syntax: 'ddd:hh24:mi-ddd:hh24:mi'. Eg: 'Mon:00:00-Mon:03:00' | `string` | `null` | no | -| [manage\_master\_user\_password](#input\_manage\_master\_user\_password) | Set to true to allow RDS to manage the master user password in Secrets Manager. Cannot be set if password is provided | `bool` | `false` | no | +| [manage\_master\_user\_password](#input\_manage\_master\_user\_password) | Set to true to allow RDS to manage the master user password in Secrets Manager. Cannot be set if password is provided | `bool` | `true` | no | | [master\_user\_secret\_kms\_key\_id](#input\_master\_user\_secret\_kms\_key\_id) | The key ARN, key ID, alias ARN or alias name for the KMS key to encrypt the master user password secret in Secrets Manager.
If not specified, the default KMS key for your Amazon Web Services account is used. | `string` | `null` | no | | [max\_allocated\_storage](#input\_max\_allocated\_storage) | Specifies the value for Storage Autoscaling | `number` | `0` | no | | [monitoring\_interval](#input\_monitoring\_interval) | The interval, in seconds, between points when Enhanced Monitoring metrics are collected for the DB instance. To disable collecting Enhanced Monitoring metrics, specify 0. The default is 0. Valid Values: 0, 1, 5, 10, 15, 30, 60. | `number` | `0` | no | diff --git a/modules/db_instance/variables.tf b/modules/db_instance/variables.tf index 602c7526..84e35069 100644 --- a/modules/db_instance/variables.tf +++ b/modules/db_instance/variables.tf @@ -125,7 +125,7 @@ variable "password" { variable "manage_master_user_password" { description = "Set to true to allow RDS to manage the master user password in Secrets Manager. Cannot be set if password is provided" type = bool - default = false + default = true } variable "master_user_secret_kms_key_id" {