Skip to content

Commit b3077f7

Browse files
snafuzhyderDjelibeybi
authored
Update issue templates (#5)
* Update issue templates * Update .github/ISSUE_TEMPLATE/---bug-report.md Co-authored-by: Avi Miller <[email protected]> * Update .github/ISSUE_TEMPLATE/---bug-report.md Co-authored-by: Avi Miller <[email protected]> * Update .github/ISSUE_TEMPLATE/---bug-report.md Co-authored-by: Avi Miller <[email protected]> * Update .github/ISSUE_TEMPLATE/---bug-report.md Co-authored-by: Avi Miller <[email protected]> * Update .github/ISSUE_TEMPLATE/---bug-report.md Co-authored-by: Avi Miller <[email protected]> * Update .github/ISSUE_TEMPLATE/---feature-request.md Co-authored-by: Avi Miller <[email protected]> * Update .github/ISSUE_TEMPLATE/---feature-request.md Co-authored-by: Avi Miller <[email protected]> * Update .github/ISSUE_TEMPLATE/---feature-request.md Co-authored-by: Avi Miller <[email protected]> * Update .github/ISSUE_TEMPLATE/---feature-request.md Co-authored-by: Avi Miller <[email protected]> * Update .github/ISSUE_TEMPLATE/---feature-request.md Co-authored-by: Avi Miller <[email protected]> * Update .github/ISSUE_TEMPLATE/---bug-report.md Co-authored-by: Avi Miller <[email protected]> * Update .github/ISSUE_TEMPLATE/---bug-report.md Co-authored-by: Avi Miller <[email protected]> * Update .github/ISSUE_TEMPLATE/---bug-report.md Co-authored-by: Avi Miller <[email protected]> * Update .github/ISSUE_TEMPLATE/---bug-report.md Co-authored-by: Avi Miller <[email protected]> * Update .github/ISSUE_TEMPLATE/---bug-report.md Co-authored-by: Avi Miller <[email protected]> * Update .github/ISSUE_TEMPLATE/---bug-report.md Co-authored-by: Avi Miller <[email protected]> * Update .github/ISSUE_TEMPLATE/---bug-report.md Co-authored-by: Avi Miller <[email protected]> * Update .github/ISSUE_TEMPLATE/---bug-report.md Co-authored-by: Avi Miller <[email protected]> * Update .github/ISSUE_TEMPLATE/---bug-report.md Co-authored-by: Avi Miller <[email protected]> * Update .github/ISSUE_TEMPLATE/---bug-report.md Co-authored-by: Avi Miller <[email protected]> Co-authored-by: Ali Mukadam <[email protected]> Co-authored-by: Avi Miller <[email protected]>
1 parent 6c3e4d6 commit b3077f7

File tree

3 files changed

+155
-0
lines changed

3 files changed

+155
-0
lines changed
Lines changed: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
---
2+
name: "\U0001F41B Bug Report"
3+
about: "If something isn't working as expected \U0001F914."
4+
title: ''
5+
labels: bug
6+
assignees: ''
7+
8+
---
9+
10+
<!---
11+
Please note the following potential times when an issue might be in Terraform core:
12+
13+
* [Configuration language](https://www.terraform.io/docs/configuration/index.html) or resource ordering issues
14+
* [State](https://www.terraform.io/docs/state/index.html) and [state backend](https://www.terraform.io/docs/backends/index.html) issues
15+
* [Provisioner](https://www.terraform.io/docs/provisioners/index.html) issues
16+
* [Registry](https://registry.terraform.io/) issues
17+
* Spans resources across multiple providers
18+
19+
If you are running into one of these scenarios, we recommend opening an issue in the [Terraform core repository](https://github.com/hashicorp/terraform/) instead.
20+
--->
21+
22+
<!--- Please keep this note for the community --->
23+
24+
### Community note
25+
26+
* Please vote on this issue by adding a 👍 [reaction](https://blog.github.com/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/) to the original issue to help the community and maintainers prioritize this request
27+
* Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request
28+
* If you are interested in working on this issue or have submitted a pull request, please leave a comment
29+
30+
<!--- Thank you for keeping this note for the community --->
31+
32+
### Terraform and Oracle Cloud Infrastructure provider versions
33+
34+
<!--- Please run `terraform -v` to show the Terraform core version and provider version(s).
35+
If you are using a local copy of the Oracle Cloud Infrastructure (OCI) provider for Terraform, run the plugin directly to get the version: `<path-to-plugin>/terraform-provider-oci`
36+
If you are not running the latest version of Terraform or the provider, please upgrade because your issue may have already been fixed. [Terraform documentation on provider versioning](https://www.terraform.io/docs/configuration/providers.html#provider-versions). --->
37+
38+
### Affected resource(s)
39+
40+
<!--- Please list the affected resources and data sources. For example, "oci_core_vcn". --->
41+
42+
43+
### Terraform configuration files
44+
45+
<!--- Information about code formatting: https://help.github.com/articles/basic-writing-and-formatting-syntax/#quoting-code --->
46+
47+
```hcl
48+
# Copy-paste your Terraform configurations here. For large Terraform configs,
49+
# please use a service like Dropbox and share a link to an archive file (tar.gz or zip).
50+
# Please remove any sensitive information from configuration files before sharing them.
51+
```
52+
53+
### Debug output
54+
55+
<!---
56+
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.
57+
58+
To obtain the debug output, see the [verbose logging for OCI Terraform Provider documentation].(https://www.terraform.io/docs/providers/oci/guides/troubleshooting.html#verbose-logging-for-oci-terraform-provider).
59+
60+
Github Gist: https://gist.github.com/
61+
--->
62+
63+
### Panic output
64+
65+
<!---
66+
If Terraform produced a panic, please provide a link to a GitHub Gist containing the output of the `crash.log`.
67+
68+
Github Gist: https://gist.github.com/
69+
--->
70+
71+
### Expected behavior
72+
73+
<!--- What should have happened? --->
74+
75+
### Actual behavior
76+
77+
<!--- What actually happened? --->
78+
79+
### Steps to reproduce
80+
81+
<!--- Please list the steps required to reproduce the issue. --->
82+
83+
1. `terraform apply`
84+
85+
### Things we need to know
86+
87+
<!--- Is there anything atypical about your environment that we should know? For example: Is the issue specific to a region? --->
88+
89+
### References
90+
91+
<!---
92+
Information about referencing Github Issues: https://help.github.com/articles/basic-writing-and-formatting-syntax/#referencing-issues-and-pull-requests
93+
94+
Are there any other GitHub issues (open or closed) or pull requests that should be linked here? Vendor documentation? For example:
95+
--->
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
---
2+
name: "\U0001F680 Feature Request"
3+
about: "I have a suggestion (and might want to implement myself \U0001F642)!"
4+
title: ''
5+
labels: enhancement
6+
assignees: ''
7+
8+
---
9+
10+
<!--- Please keep this note for the community --->
11+
12+
### Community note
13+
14+
* Please vote on this issue by adding a 👍 [reaction](https://blog.github.com/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/) to the original issue to help the community and maintainers prioritize this request
15+
* Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request
16+
* If you are interested in working on this issue or have submitted a pull request, please leave a comment
17+
18+
<!--- Thank you for keeping this note for the community --->
19+
20+
### Description
21+
22+
<!--- Please leave a helpful description of the feature request here. --->
23+
24+
### New or existing resource(s)
25+
26+
<!--- Please list any new or existing affected resources and data sources that are part of the request. For example: "oci_core_vcn" --->
27+
28+
29+
### Example Terraform configuration
30+
31+
<!--- Information about code formatting: https://help.github.com/articles/basic-writing-and-formatting-syntax/#quoting-code --->
32+
33+
```hcl
34+
# Provide example Terraform configurations for how the requested feature may be used.
35+
```
36+
37+
### References
38+
39+
<!---
40+
Information about referencing Github Issues: https://help.github.com/articles/basic-writing-and-formatting-syntax/#referencing-issues-and-pull-requests
41+
42+
Are there any other GitHub issues (open or closed) or pull requests that should be linked here? Vendor blog posts or documentation? For example:
43+
44+
--->
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
name: "\U0001F4AC Question"
3+
about: Questions regarding the Terraform Oracle Cloud Infrastructure VCN module
4+
title: ''
5+
labels: question
6+
assignees: ''
7+
8+
---
9+
10+
This Github template is intended for questions regarding the Terraform **Oracle Cloud Infrastructure** VCN module.
11+
12+
If you have a support request or question related to core Terraform functionality or the OCI provider, please submit them to one of these resources:
13+
14+
* [Terraform OCI provider](https://github.com/terraform-providers/terraform-provider-oci)
15+
* [Terraform community resources](https://www.terraform.io/docs/extend/community/index.html)
16+
* [HashiCorp support](https://support.hashicorp.com) (Terraform Enterprise customers)

0 commit comments

Comments
 (0)