feat: Introduce db_cluster_secretsmanager_secret_arn output #501
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
Change introduces new output
db_cluster_secretsmanager_secret_arn
for current module.Motivation and Context
While using
ephemeral
resource likeaws_secretsmanager_secret_version
, you need to specify ARN of the secret to proceed with desired solution for configuring RDS instance. Example:Now, current state of this module isn't provided anything, so you can't simply link ARN of the secret that is created by
manage_master_user_password
andmanage_master_user_password_rotation
fields and proceed with it. So, if module provides this functionality, we can simply use this outputdb_cluster_secretsmanager_secret_arn
and use it for configuration needed providers (in my case,mysql
provider).Breaking Changes
No breaking changes, minor bump.