Skip to content

Commit 3d8602b

Browse files
Update cluster.go
1 parent ac49929 commit 3d8602b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/service/docdb/cluster.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -573,7 +573,7 @@ func resourceClusterCreate(ctx context.Context, d *schema.ResourceData, meta any
573573
input.KmsKeyId = aws.String(v.(string))
574574
}
575575

576-
if v, ok := d.GetOk("manage_master_user_password"); ok && v.(bool) {
576+
if v, ok := d.GetOk("manage_master_user_password"); ok {
577577
input.ManageMasterUserPassword = aws.Bool(v.(bool))
578578
} else {
579579
if v, ok := d.GetOk("master_password"); ok {

0 commit comments

Comments
 (0)