You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request
Please do not leave "+1" or other comments that do not add relevant new information or questions, they generate extra noise for issue followers and do not help prioritize the request
If you are interested in working on this issue or have submitted a pull request, please leave a comment
The resources and data sources in this provider are generated from the CloudFormation schema, so they can only support the actions that the underlying schema supports. For this reason submitted bugs should be limited to defects in the generation and runtime code of the provider. Customizing behavior of the resource, or noting a gap in behavior are not valid bugs and should be submitted as enhancements to AWS via the CloudFormation Open Coverage Roadmap.
Description
The CloudFormation schema includes a list of permission required for each of its update handlers. This could be included in the documentation to directly understand what specific permissions are required without having to refer back to the AWS documentation.
The schema separates the permissions per handler type (Create/Read/Update/Delete/List). This separation likely doesn't make sense to include in the documentation, as the Terraform resource will need all of them to be able to manage all of its attribute. We should instead represent this as a single list deduplicating where necessary.
From an implementation point of view, this would require us being able to supply the documentation generation framework with this information, which would be enabled by #2024 if accepted.
Data-source permissions would be selected from the List/Read set of permissions.
The text was updated successfully, but these errors were encountered:
Community Note
Description
The CloudFormation schema includes a list of permission required for each of its update handlers. This could be included in the documentation to directly understand what specific permissions are required without having to refer back to the AWS documentation.
The schema separates the permissions per handler type (Create/Read/Update/Delete/List). This separation likely doesn't make sense to include in the documentation, as the Terraform resource will need all of them to be able to manage all of its attribute. We should instead represent this as a single list deduplicating where necessary.
Using the following example from AWS_AccessAnalyzer_Analyzer.json
We could represent the above in a separate "Permissions" heading in the resource documentation similar to the following:
Permissions
The following permissions are required for full management of this resource.
From an implementation point of view, this would require us being able to supply the documentation generation framework with this information, which would be enabled by #2024 if accepted.
Data-source permissions would be selected from the List/Read set of permissions.
The text was updated successfully, but these errors were encountered: