Skip to content

Commit 5ed6782

Browse files
committed
Add .github/ISSUE_TEMPLATE/bug_report.md
1 parent 8da3a68 commit 5ed6782

File tree

1 file changed

+55
-0
lines changed

1 file changed

+55
-0
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
---
5+
6+
## Description
7+
8+
Please provide a clear and concise description of the issue you are encountering, and a reproduction of your configuration (see the `examples/*` directory for references that you can copy+paste and tailor to match your configs if you are unable to copy your exact configuration). The reproduction MUST be executable by running `terraform init && terraform apply` without any further changes.
9+
10+
If your request is for a new feature, please use the `Feature request` template.
11+
12+
- [ ] ✋ I have searched the open/closed issues and my issue is not listed.
13+
14+
## ⚠️ Note
15+
16+
Before you submit an issue, please perform the following first:
17+
18+
1. Remove the local `.terraform` directory (! ONLY if state is stored remotely, which hopefully you are following that best practice!): `rm -rf .terraform/`
19+
2. Re-initialize the project root to pull down modules: `terraform init`
20+
3. Re-attempt your terraform plan or apply and check if the issue still persists
21+
22+
## Versions
23+
24+
- Module version [Required]:
25+
26+
- Terraform version:
27+
<!-- Execute terraform -version -->
28+
- Provider version(s):
29+
<!-- Execute: terraform providers -version -->
30+
31+
## Reproduction Code [Required]
32+
33+
<!-- REQUIRED -->
34+
35+
Steps to reproduce the behavior:
36+
37+
<!-- Are you using workspaces? -->
38+
<!-- Have you cleared the local cache (see Notice section above)? -->
39+
<!-- List steps in order that led up to the issue you encountered -->
40+
41+
## Expected behavior
42+
43+
<!-- A clear and concise description of what you expected to happen -->
44+
45+
## Actual behavior
46+
47+
<!-- A clear and concise description of what actually happened -->
48+
49+
### Terminal Output Screenshot(s)
50+
51+
<!-- Optional but helpful -->
52+
53+
## Additional context
54+
55+
<!-- Add any other context about the problem here -->

0 commit comments

Comments
 (0)