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
This update introduces the `manage_master_user_password` variable, allowing
the module to use AWS Secrets Manager for managing the DocumentDB master
user password. The logic in `main.tf` is updated to handle three cases:
1) AWS-managed password, 2) user-provided password, and 3) auto-generated
password. Also updates the AWS provider version constraint and fixes a
typo in the random_password resource.
Copy file name to clipboardExpand all lines: src/variables.tf
+10Lines changed: 10 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -40,6 +40,16 @@ variable "master_password" {
40
40
description="(Required unless a snapshot_identifier is provided) Password for the master DB user. Note that this may show up in logs, and it will be stored in the state file. Please refer to the DocumentDB Naming Constraints"
41
41
}
42
42
43
+
variable"manage_master_user_password" {
44
+
type=bool
45
+
description="Whether to manage the master user password using AWS Secrets Manager."
0 commit comments