Skip to content

Commit dbd45b1

Browse files
authored
Merge pull request microsoft#94 from Azure/issue_templates
added bug templates for azapi, aztfy, examples and feature template
2 parents 1d9cfd0 + 5d0bc04 commit dbd45b1

6 files changed

Lines changed: 226 additions & 7 deletions

File tree

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
name: 'AzAPI Provider Bug Report'
2+
description: File a bug/issue for the AzAPI Terraform Provider
3+
title: "<title>"
4+
labels: [bug, azapi]
5+
body:
6+
- type: checkboxes
7+
attributes:
8+
label: Is there an existing issue for this?
9+
description: Please search to see if an issue already exists for the bug you encountered.
10+
options:
11+
- label: I have searched the existing issues
12+
required: true
13+
- type: input
14+
attributes:
15+
label: Terraform Version
16+
description: |
17+
What version of Terraform were you using when you encountered this issue?
18+
Please include operating system when applicable.
19+
20+
`terraform --version`
21+
placeholder: 1.0.0
22+
validations:
23+
required: true
24+
- type: input
25+
attributes:
26+
label: Provider Version
27+
description: |
28+
What version of the AzAPI provider were you using when you encountered this issue?
29+
placeholder: 0.1.0
30+
validations:
31+
required: true
32+
- type: textarea
33+
attributes:
34+
label: Current Behavior
35+
description: A concise description of what you're experiencing. Include Error output where applicable.
36+
validations:
37+
required: true
38+
- type: textarea
39+
attributes:
40+
label: Expected Behavior
41+
description: A concise description of what you expected to happen.
42+
validations:
43+
required: true
44+
- type: textarea
45+
attributes:
46+
label: Steps To Reproduce
47+
description: |
48+
Steps to reproduce the behavior.
49+
50+
`terraform apply`
51+
placeholder: |
52+
1. Run '...'
53+
2. See error...
54+
validations:
55+
required: false
56+
- type: textarea
57+
attributes:
58+
label: Terraform configuration
59+
description: Please provide the minimum Terraform configuration that is resulting in the bug / issue.
60+
render: terraform
61+
validations:
62+
required: true
63+
- type: textarea
64+
attributes:
65+
label: Anything else?
66+
description: |
67+
Links? References? Anything that will give us more context about the issue you are encountering!
68+
69+
Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in.
70+
validations:
71+
required: false
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
name: 'Azure Terrafy Bug Report'
2+
description: File a bug/issue for a Azure Terrafy (aztfy)
3+
title: "<title>"
4+
labels: [bug, aztfy]
5+
body:
6+
- type: checkboxes
7+
attributes:
8+
label: Is there an existing issue for this?
9+
description: Please search to see if an issue already exists for the bug you encountered.
10+
options:
11+
- label: I have searched the existing issues
12+
required: true
13+
- type: textarea
14+
attributes:
15+
label: Current Behavior
16+
description: A concise description of what you're experiencing. Include error output where applicable.
17+
validations:
18+
required: true
19+
- type: textarea
20+
attributes:
21+
label: Expected Behavior
22+
description: A concise description of what you expected to happen.
23+
validations:
24+
required: true
25+
- type: textarea
26+
attributes:
27+
label: Steps To Reproduce
28+
description: Steps to reproduce the behavior.
29+
placeholder: |
30+
1. In this environment...
31+
2. With this config...
32+
3. Run '...'
33+
4. See error...
34+
validations:
35+
required: false
36+
- type: textarea
37+
attributes:
38+
label: Anything else?
39+
description: |
40+
Links? References? Anything that will give us more context about the issue you are encountering!
41+
42+
Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in.
43+
validations:
44+
required: false

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
blank_issues_enabled: false
1+
blank_issues_enabled: true
22
contact_links:
33
- name: AzureRM provider issues and Feature requests
44
url: https://github.com/hashicorp/terraform-provider-azurerm/issues
55
about: Please ask questions and report issues with the AzureRM provider and related resources here.
6-
Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
name: 'Azure Terraform example Bug Report'
2+
description: File a bug/issue for a example (Quickstart, samples, etc.)
3+
title: "<title>"
4+
labels: [bug, example]
5+
body:
6+
- type: checkboxes
7+
attributes:
8+
label: Is there an existing issue for this?
9+
description: Please search to see if an issue already exists for the bug you encountered.
10+
options:
11+
- label: I have searched the existing issues
12+
required: true
13+
- type: input
14+
attributes:
15+
label: Example Name
16+
description: The name of the example where you found the bug.
17+
validations:
18+
required: true
19+
- type: input
20+
attributes:
21+
label: Terraform Version
22+
description: |
23+
What version of Terraform were you using when you encountered this issue?
24+
25+
`terraform --version
26+
placeholder: 1.0.0
27+
validations:
28+
required: true
29+
- type: textarea
30+
attributes:
31+
label: Current Behavior
32+
description: A concise description of what you're experiencing.
33+
validations:
34+
required: true
35+
- type: textarea
36+
attributes:
37+
label: Expected Behavior
38+
description: A concise description of what you expected to happen.
39+
validations:
40+
required: true
41+
- type: textarea
42+
attributes:
43+
label: Steps To Reproduce
44+
description: Steps to reproduce the behavior.
45+
placeholder: |
46+
1. Run '...'
47+
2. See error...
48+
validations:
49+
required: false
50+
- type: textarea
51+
attributes:
52+
label: Anything else?
53+
description: |
54+
Links? References? Anything that will give us more context about the issue you are encountering!
55+
56+
Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in.
57+
validations:
58+
required: false

.github/ISSUE_TEMPLATE/feature.yml

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
name: 'Azure Terraform feature Ask'
2+
description: File a bug/issue for a verified module
3+
title: "<title>"
4+
labels: [enhancement]
5+
body:
6+
- type: checkboxes
7+
attributes:
8+
label: Is there an existing issue for this?
9+
description: Please search to see if an issue already exists for the bug you encountered.
10+
options:
11+
- label: I have searched the existing issues
12+
required: true
13+
- type: dropdown
14+
attributes:
15+
label: Where would you like this feature added?
16+
description: Let us know what product or area you would like to see this feature added to.
17+
multiple: false
18+
options:
19+
- "Verified Modules"
20+
- "AzAPI Provider"
21+
- "Azure Terrafy"
22+
- "Examples (Quickstart, Samples, etc.)"
23+
- "Other/Unknown"
24+
validations:
25+
required: true
26+
- type: textarea
27+
attributes:
28+
label: Is this feature ask due to a problem that you are encountering?
29+
description: If so, please provide a clear and concise description of what the problem is.
30+
placeholder: I'm always frustrated when [...]
31+
validations:
32+
required: false
33+
- type: textarea
34+
attributes:
35+
label: Describe potential solutions.
36+
description: Please provide a clear and concise description of what you want to happen.
37+
placeholder: Add a way for me to [...]
38+
validations:
39+
required: true
40+
- type: textarea
41+
attributes:
42+
label: Anything else?
43+
description: |
44+
Links? References? Anything that will give us more context about the feature you are requesting!
45+
46+
Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in.
47+
validations:
48+
required: false

.github/ISSUE_TEMPLATE/module_bug.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,18 +49,17 @@ body:
4949
- type: textarea
5050
attributes:
5151
label: Terraform configuration
52-
description: Please provide the Terraform configuration that is resulting in the bug / ssue.
52+
description: Please provide the minimum Terraform configuration that is resulting in the bug / issue.
53+
render: terraform
5354
validations:
5455
required: true
5556
- type: textarea
5657
attributes:
5758
label: Steps To Reproduce
5859
description: Steps to reproduce the behavior.
5960
placeholder: |
60-
1. In this environment...
61-
2. With this config...
62-
3. Run '...'
63-
4. See error...
61+
1. Run '...'
62+
2. See error...
6463
validations:
6564
required: false
6665
- type: textarea

0 commit comments

Comments
 (0)