|
| 1 | +name: Bug Report |
| 2 | +description: Something is incorrect or not working as expected. |
| 3 | +labels: ["bug"] |
| 4 | +body: |
| 5 | + - type: markdown |
| 6 | + attributes: |
| 7 | + value: | |
| 8 | + Thank you for taking the time to fill out this bug report! Please note that this issue tracker is only used for bug reports and feature requests. Other issues will be closed. |
| 9 | +
|
| 10 | + If you have a question, please go back to the issue chooser and select one of the question links. |
| 11 | + - type: textarea |
| 12 | + id: versions |
| 13 | + attributes: |
| 14 | + label: Terraform CLI and Framework Versions |
| 15 | + description: What versions of Terraform CLI and terraform-plugin-framework? |
| 16 | + placeholder: Output of `terraform version` from configuration directory and `go list -m github.com/hashicorp/terraform-plugin-framework` |
| 17 | + validations: |
| 18 | + required: true |
| 19 | + - type: textarea |
| 20 | + id: terraform-plugin-framework-code |
| 21 | + attributes: |
| 22 | + label: Terraform Plugin Framework Code |
| 23 | + description: Please copy and paste any relevant Terraform Plugin Framework code. This will be automatically formatted into code, so no need for backticks. |
| 24 | + render: golang |
| 25 | + validations: |
| 26 | + required: true |
| 27 | + - type: textarea |
| 28 | + id: terraform-configuration |
| 29 | + attributes: |
| 30 | + label: Terraform Configuration |
| 31 | + description: Please copy and paste any relevant Terraform configuration. This will be automatically formatted into code, so no need for backticks. |
| 32 | + render: terraform |
| 33 | + validations: |
| 34 | + required: true |
| 35 | + - type: textarea |
| 36 | + id: expected-behavior |
| 37 | + attributes: |
| 38 | + label: Expected Behavior |
| 39 | + description: What did you expect to happen? |
| 40 | + placeholder: Description of what should have happened. |
| 41 | + validations: |
| 42 | + required: true |
| 43 | + - type: textarea |
| 44 | + id: actual-behavior |
| 45 | + attributes: |
| 46 | + label: Actual Behavior |
| 47 | + description: What actually happened? |
| 48 | + placeholder: Description of what actually happened. |
| 49 | + validations: |
| 50 | + required: true |
| 51 | + - type: textarea |
| 52 | + id: reproduction-steps |
| 53 | + attributes: |
| 54 | + label: Steps to Reproduce |
| 55 | + description: List of steps to reproduce the issue. |
| 56 | + value: | |
| 57 | + 1. `terraform apply` |
| 58 | + validations: |
| 59 | + required: true |
| 60 | + - type: input |
| 61 | + id: logs |
| 62 | + attributes: |
| 63 | + label: Logs |
| 64 | + description: Please provide a link to a [GitHub Gist](https://gist.github.com) containing TRACE log output. [Terraform Provider Logging Documentation](https://www.terraform.io/plugin/log/managing) |
| 65 | + placeholder: https://gist.github.com/example/12345678 |
| 66 | + validations: |
| 67 | + required: false |
| 68 | + - type: textarea |
| 69 | + id: additional-information |
| 70 | + attributes: |
| 71 | + label: Additional Information |
| 72 | + description: Are there any additional details about your environment, workflow, or recent changes that might be relevant? Have you discovered a workaround? Are there links to other related issues? |
| 73 | + validations: |
| 74 | + required: false |
| 75 | + - type: checkboxes |
| 76 | + id: terms |
| 77 | + attributes: |
| 78 | + label: Code of Conduct |
| 79 | + description: By submitting this issue, you agree to follow our [Community Guidelines](https://www.hashicorp.com/community-guidelines). |
| 80 | + options: |
| 81 | + - label: I agree to follow this project's Code of Conduct |
| 82 | + required: true |
0 commit comments