-
Notifications
You must be signed in to change notification settings - Fork 9.3k
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
docs: add CDKTF documentation for ec2_*
resources/datasource and update script
#31596
docs: add CDKTF documentation for ec2_*
resources/datasource and update script
#31596
Conversation
Community NoteVoting for Prioritization
For Submitters
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Welcome @DanielMSchmidt 👋
It looks like this is your first Pull Request submission to the Terraform AWS Provider! If you haven’t already done so please make sure you have checked out our CONTRIBUTOR guide and FAQ to make sure your contribution is adhering to best practice and has all the necessary elements in place for a successful approval.
Also take a look at our FAQ which details how we prioritize Pull Requests for inclusion.
Thanks again, and welcome to the community! 😃
The |
tfproviderdocs v0.10.0 introduces some initial CDKTF support. Please reach out with any issues. |
03b185c
to
00ceaca
Compare
9c44a86
to
2522a6e
Compare
88604de
to
a167eee
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM @DanielMSchmidt 🚀 Let's see how the job generation goes this evening!
…date script (hashicorp#31596) * chore: add PR based workflow for cdktf docs * docs: update cdktf documentation * chore: update dependencies * chore: add ignore flag * chore: pin github action versions * chore: run go mod tidy * chore: don't use version detection anymore
* Adds finspace_kx_user resource * Ran make servicepackages * Formatting changes for kx user * Formatting fixes for user tests and docs * Adds finspace_kx_user resource * Ran make servicepackages * Formatting changes for kx user * docs: add CDKTF documentation for `ec2_*` resources/datasource and update script (#31596) * chore: add PR based workflow for cdktf docs * docs: update cdktf documentation * chore: update dependencies * chore: add ignore flag * chore: pin github action versions * chore: run go mod tidy * chore: don't use version detection anymore * Formatting fixes for user tests and docs * Update kx_user_test.go * Update kx_user_test.go * r/aws_finspace_kx_user(docs): terrafmt * r/aws_finspace_kx_user: alphabetize attributes * r/aws_finspace_kx_user: crud handlers return diags * r/aws_finspace_kx_user: find by id to support import * r/aws_finspace_kx_user: simplify update * Update finspace_kx_user.html.markdown * r/aws_finspace_kx_user(docs): use standard tags/tags_all descriptions * r/aws_finspace_kx_user: import support * r/aws_finspace_kx_user(test): pass ctx to check funcs * chore: changelog * r/aws_finspace_kx_user(test): add base config * r/aws_finspace_kx_user(docs): fix import resource name --------- Co-authored-by: Daniel Schmidt <[email protected]> Co-authored-by: Jared Baker <[email protected]>
This functionality has been released in v5.2.0 of the Terraform AWS Provider. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading. For further feature requests or bug reports with this functionality, please create a new GitHub issue following the template. Thank you! |
I'm going to lock this pull request because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. |
Description
This PR introduces CDKTF documentation generated from the original HCL-based documentation. The internal tool doing the conversion replaces the code blocks with the CDKTF equivalent of the HCL. If the HCL is invalid we can not translate it, therefore we keep it as is. We also add a comment with a cache key to each generated document to avoid regenerating them if neither the input nor the used cdktf version changed.
For now we only add documentation for Typescript and Python and only for resources or data sources that start with
ec2_
.Once this is merged more PRs for other resources will follow.
The included GitHub action will run every Wednesday night to create a PR with any documentation updates.