Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

(docdb): Updating secret name or switching from an auto-generated secret to an imported one requires cluster replacement even though it could be updated without replacement #29917

Open
Booligoosh opened this issue Apr 22, 2024 · 2 comments
Labels
@aws-cdk/aws-docdb Related to Amazon DocumentDB bug This issue is a bug. effort/medium Medium work item – several days of effort p2

Comments

@Booligoosh
Copy link
Contributor

Booligoosh commented Apr 22, 2024

Describe the bug

When updating the masterUser.secretName field of docdb.DatabaseCluster, or switching from an auto-generated secret without masterUser.password to importing one via masterUser.password, the cluster needs to be replaced on deploy. This is because the MasterUsername field in the CFN changes, since it references a secret value. However, the construct already knows the username from the masterUser.username prop, so this replacement could be avoided by just setting MasterUsername directly as a string rather than a secret value lookup.

Expected Behavior

Updating masterUser.secretName on a docdb.DatabaseCluster or adding masterUser.password should not require replacement of the cluster.

Current Behavior

Updating masterUser.secretName on a docdb.DatabaseCluster or adding masterUser.password requires replacement of the cluster.

Reproduction Steps

  1. Create a DocDB cluster and deploy
  2. Change the secretName and deploy again
  3. Observe that a CFN replacement of the cluster is triggered

Possible Solution

This issue could be fixed by changing this line:

-       masterUsername: secret ? secret.secretValueFromJson('username').unsafeUnwrap() : props.masterUser.username,
+       masterUsername: props.masterUser.username,

This would mean that even if the secret name is changed or a custom secret is used, the value for the CFN MasterUsername field would remain the same as long as masterUser.username remains the same, meaning no replacement would be required.

Unfortunately, this would be a breaking change as it would change the value of the MasterUsername field for existing clusters from the secret lookup to the string value, meaning existing clusters would require replacement after upgrading the CDK version. Because of this, it may only be able to be implemented in a DatabaseClusterV2 construct, but this issue should be kept in mind if such a construct is ever developed.

Additional Information/Context

No response

CDK CLI Version

2.115.0

Framework Version

No response

Node.js Version

20.11.1

OS

Windows 10 Enterprise

Language

TypeScript

Language Version

No response

Other information

No response

@Booligoosh Booligoosh added bug This issue is a bug. needs-triage This issue or PR still needs to be triaged. labels Apr 22, 2024
@github-actions github-actions bot added the @aws-cdk/aws-docdb Related to Amazon DocumentDB label Apr 22, 2024
@Booligoosh Booligoosh changed the title (docdb): Updating secret name or switching from an auto-generated password to an imported one requires cluster replacement when it doesn't need to be (docdb): Updating secret name or switching from an auto-generated secret to an imported one requires cluster replacement even though it could be updated without replacement Apr 22, 2024
@pahud
Copy link
Contributor

pahud commented Apr 22, 2024

Yes this makes sense if props.masterUser.username is provided we should not update that prop.

Unfortunately, this would be a breaking change as it would change the value of the MasterUsername field for existing clusters from the secret lookup to the string value, meaning existing clusters would require replacement after upgrading the CDK version

I think we still can do it under a feature flag. Are you interested to submit a PR for that? I will request for more input from the maintainers about the feature flag.

@pahud pahud added p2 effort/medium Medium work item – several days of effort and removed needs-triage This issue or PR still needs to be triaged. labels Apr 22, 2024
@Booligoosh
Copy link
Contributor Author

Ah awesome, yes I'd be interested in submitting a PR, if this is something that the team is happy to accept. I can use a temporary flag name for now until you get input.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
@aws-cdk/aws-docdb Related to Amazon DocumentDB bug This issue is a bug. effort/medium Medium work item – several days of effort p2
Projects
None yet
Development

No branches or pull requests

2 participants