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
Fix a typo in the documentation for
r/aws_codecommit_repository
References
When the
aws_codecommit_repository
resource was enhanced to add thekms_key_id
parameter in #35095, the documentation added for the new parameter had a typo in it, and closed the name of the fallback AWS-managed key with a double backtick``
instead of a single `.This results in the name not rendering properly on the terraform provider registry website, and for some strange reason I haven't pinned down yet, only sometimes breaks a tool I use that parses the terraform provider documentation. I'll take care of fixing the tool, but I thought I'd open the PR to clean up the website.
The same typo is present in the cdktf docs, but it looks like the normal practice is for those to be updated by codegen scripts, not by humans. If I'm wrong about that I prepared 3a3dfd1 as well, but didn't open a PR.
Output from Acceptance Testing
I didn't run acceptance testing because it's only a documentation change.