github.com/hashicorp/terraform-plugin-sdk@v1.17.2/.github/ISSUE_TEMPLATE/bug_report.md (about)

     1  ---
     2  name: 🐛 Bug report
     3  about: Let us know about an unexpected error, a crash, or an incorrect behavior.
     4  labels: bug
     5  ---
     6  
     7  ### SDK version
     8  <!---
     9  Inspect your go.mod as below to find the version, and paste the result between the ``` marks below.
    10  
    11  go mod edit -json | jq '.Require[] | select(.Path=="github.com/hashicorp/terraform-plugin-sdk")'
    12  
    13  If you are not running the latest version of the SDK, please try upgrading
    14  because your bug may have already been fixed.
    15  
    16  If the command above doesn't yield any results, it means you may not have migrated
    17  to the standalone SDK yet. See https://www.terraform.io/docs/extend/plugin-sdk.html for more.
    18  -->
    19  
    20  ```
    21  ...
    22  ```
    23  
    24  ### Relevant provider source code
    25  
    26  <!--
    27  Paste any Go code that you believe to be relevant to the bug
    28  e.g. schema or implementation of CRUD for a given resource or data source
    29  -->
    30  ```go
    31  ...
    32  ```
    33  
    34  ### Terraform Configuration Files
    35  <!--
    36  Paste the relevant parts of your Terraform configuration between the ``` marks below.
    37  
    38  For large Terraform configs, please use a service like Dropbox and share a link to the ZIP file. For security, you can also encrypt the files using our GPG public key.
    39  -->
    40  
    41  ```hcl
    42  ...
    43  ```
    44  
    45  ### Debug Output
    46  <!--
    47  Full debug output can be obtained by running Terraform with the environment variable `TF_LOG=trace`. Please create a GitHub Gist containing the debug output. Please do _not_ paste the debug output in the issue, since debug output is long.
    48  
    49  Debug output may contain sensitive information. Please review it before posting publicly, and if you are concerned feel free to encrypt the files using the HashiCorp security public key.
    50  -->
    51  
    52  
    53  ### Expected Behavior
    54  <!--
    55  What should have happened?
    56  -->
    57  
    58  ### Actual Behavior
    59  <!--
    60  What actually happened?
    61  -->
    62  
    63  ### Steps to Reproduce
    64  <!--
    65  Please list the full steps required to reproduce the issue, for example:
    66  1. `terraform init`
    67  2. `terraform apply`
    68  -->
    69  
    70  ### References
    71  <!--
    72  Are there any other GitHub issues (open or closed) or Pull Requests that should be linked here? For example:
    73  
    74  - #6017
    75  -->