|
| 1 | +name: Bug Report |
| 2 | +description: If something isn't 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 a bug report. |
| 9 | +
|
| 10 | + If you are not running the latest version of this module, please try to reproduce your bug with the latest version before opening an issue. |
| 11 | + - type: checkboxes |
| 12 | + attributes: |
| 13 | + label: Is there an existing issue for this? |
| 14 | + description: Please search to see if an issue already exists for the bug you encountered. |
| 15 | + options: |
| 16 | + - label: I have searched the existing issues |
| 17 | + required: true |
| 18 | + - type: dropdown |
| 19 | + attributes: |
| 20 | + label: Greenfield/Brownfield provisioning |
| 21 | + description: Do you reproduce the bug with a new infrastructure provisioning (greenfield) or you need an existing infrastructure with an existing terraform state (brownfield) to reproduce the bug ? |
| 22 | + multiple: false |
| 23 | + options: |
| 24 | + - greenfield |
| 25 | + - brownfield |
| 26 | + validations: |
| 27 | + required: true |
| 28 | + - type: input |
| 29 | + id: terraform |
| 30 | + attributes: |
| 31 | + label: Terraform Version |
| 32 | + description: Which Terraform version are you using? |
| 33 | + placeholder: Example value, 1.2.8 |
| 34 | + validations: |
| 35 | + required: true |
| 36 | + - type: input |
| 37 | + id: module |
| 38 | + attributes: |
| 39 | + label: Module Version |
| 40 | + description: Which module version are you using? |
| 41 | + placeholder: Example value, 6.0.0 |
| 42 | + validations: |
| 43 | + required: true |
| 44 | + - type: input |
| 45 | + id: azurerm |
| 46 | + attributes: |
| 47 | + label: AzureRM Provider Version |
| 48 | + description: Which AzureRM Provider version are you using? |
| 49 | + placeholder: Example value, 3.21.1 |
| 50 | + validations: |
| 51 | + required: true |
| 52 | + - type: input |
| 53 | + id: resource |
| 54 | + attributes: |
| 55 | + label: Affected Resource(s)/Data Source(s) |
| 56 | + description: Please list the affected resources and/or data sources. |
| 57 | + placeholder: azurerm_XXXXX |
| 58 | + validations: |
| 59 | + required: true |
| 60 | + - type: textarea |
| 61 | + id: config |
| 62 | + attributes: |
| 63 | + label: Terraform Configuration Files |
| 64 | + description: | |
| 65 | + Please provide a minimal Terraform configuration that can reproduce the issue. |
| 66 | + render: hcl |
| 67 | + validations: |
| 68 | + required: true |
| 69 | + - type: textarea |
| 70 | + id: tfvars |
| 71 | + attributes: |
| 72 | + label: tfvars variables values |
| 73 | + description: | |
| 74 | + Please provide the necessary tfvars variables values to reproduce the issue. Do not share secrets or sensitive information. |
| 75 | + render: hcl |
| 76 | + validations: |
| 77 | + required: true |
| 78 | + - type: textarea |
| 79 | + id: debug |
| 80 | + attributes: |
| 81 | + label: Debug Output/Panic Output |
| 82 | + description: | |
| 83 | + For long debug logs please provide a link to a GitHub Gist containing the complete debug output. Please do NOT paste the debug output in the issue; just paste a link to the Gist. |
| 84 | +
|
| 85 | + To obtain the debug output, see the [Terraform documentation on debugging](https://www.terraform.io/docs/internals/debugging.html). |
| 86 | + render: shell |
| 87 | + validations: |
| 88 | + required: true |
| 89 | + - type: textarea |
| 90 | + id: expected |
| 91 | + attributes: |
| 92 | + label: Expected Behaviour |
| 93 | + description: What should have happened? |
| 94 | + - type: textarea |
| 95 | + id: actual |
| 96 | + attributes: |
| 97 | + label: Actual Behaviour |
| 98 | + description: What actually happened? |
| 99 | + - type: textarea |
| 100 | + id: reproduce |
| 101 | + attributes: |
| 102 | + label: Steps to Reproduce |
| 103 | + description: | |
| 104 | + Please list the steps required to reproduce the issue, e.g. |
| 105 | +
|
| 106 | + 1. `terraform apply` |
| 107 | + - type: input |
| 108 | + id: facts |
| 109 | + attributes: |
| 110 | + label: Important Factoids |
| 111 | + description: | |
| 112 | + Are there anything atypical about your accounts that we should know? For example: Running in a Azure China/Germany/Government? |
| 113 | + - type: textarea |
| 114 | + id: references |
| 115 | + attributes: |
| 116 | + label: References |
| 117 | + description: | |
| 118 | + Information about referencing Github Issues: https://help.github.com/articles/basic-writing-and-formatting-syntax/#referencing-issues-and-pull-requests |
| 119 | +
|
| 120 | + Are there any other GitHub issues (open or closed) or pull requests that should be linked here? Such as vendor documentation? |
0 commit comments