mirror of
https://github.com/kreuzwerker/terraform-provider-docker.git
synced 2025-12-20 22:59:42 -05:00
chore: adds separate bug and ft req templates
This commit is contained in:
parent
496909c57e
commit
09a5a1ccd4
4 changed files with 146 additions and 43 deletions
43
.github/ISSUE_TEMPLATE.md
vendored
43
.github/ISSUE_TEMPLATE.md
vendored
|
|
@ -1,43 +0,0 @@
|
|||
Hi there,
|
||||
|
||||
Thank you for opening an issue. Please note that we try to keep the Terraform issue tracker reserved for bug reports and feature requests. For general usage questions, please see: https://www.terraform.io/community.html.
|
||||
|
||||
### Terraform Version
|
||||
Run `terraform -v` to show the version. If you are not running the latest version of Terraform, please upgrade because your issue may have already been fixed.
|
||||
|
||||
### Affected Resource(s)
|
||||
Please list the resources as a list, for example:
|
||||
- opc_instance
|
||||
- opc_storage_volume
|
||||
|
||||
If this issue appears to affect multiple resources, it may be an issue with Terraform's core, so please mention this.
|
||||
|
||||
### Terraform Configuration Files
|
||||
```hcl
|
||||
# Copy-paste your Terraform configurations here - 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.
|
||||
```
|
||||
|
||||
### Debug Output
|
||||
Please provider a link to a GitHub Gist containing the complete debug output: https://www.terraform.io/docs/internals/debugging.html. Please do NOT paste the debug output in the issue; just paste a link to the Gist.
|
||||
|
||||
### Panic Output
|
||||
If Terraform produced a panic, please provide a link to a GitHub Gist containing the output of the `crash.log`.
|
||||
|
||||
### Expected Behavior
|
||||
What should have happened?
|
||||
|
||||
### Actual Behavior
|
||||
What actually happened?
|
||||
|
||||
### Steps to Reproduce
|
||||
Please list the steps required to reproduce the issue, for example:
|
||||
1. `terraform apply`
|
||||
|
||||
### Important Factoids
|
||||
Are there anything atypical about your accounts that we should know? For example: Running in EC2 Classic? Custom version of OpenStack? Tight ACLs?
|
||||
|
||||
### References
|
||||
Are there any other GitHub issues (open or closed) or Pull Requests that should be linked here? For example:
|
||||
- GH-1234
|
||||
87
.github/ISSUE_TEMPLATE/Bug_Report.md
vendored
Normal file
87
.github/ISSUE_TEMPLATE/Bug_Report.md
vendored
Normal file
|
|
@ -0,0 +1,87 @@
|
|||
---
|
||||
name: 🐛 Bug Report
|
||||
about: If something isn't working as expected 🤔.
|
||||
|
||||
---
|
||||
|
||||
<!---
|
||||
Please note the following potential times when an issue might be in Terraform core:
|
||||
|
||||
* [Configuration Language](https://www.terraform.io/docs/configuration/index.html) or resource ordering issues
|
||||
* [State](https://www.terraform.io/docs/state/index.html) and [State Backend](https://www.terraform.io/docs/backends/index.html) issues
|
||||
* [Provisioner](https://www.terraform.io/docs/provisioners/index.html) issues
|
||||
* [Registry](https://registry.terraform.io/) issues
|
||||
* Spans resources across multiple providers
|
||||
|
||||
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.
|
||||
--->
|
||||
|
||||
<!--- Please keep this note for the community --->
|
||||
|
||||
### Community Note
|
||||
|
||||
* 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
|
||||
* Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request
|
||||
* If you are interested in working on this issue or have submitted a pull request, please leave a comment
|
||||
|
||||
<!--- Thank you for keeping this note for the community --->
|
||||
|
||||
### Terraform (and docker Provider) Version
|
||||
|
||||
<!--- Please run `terraform -v` to show the Terraform core version and provider version(s). 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). --->
|
||||
|
||||
### Affected Resource(s)
|
||||
|
||||
<!--- Please list the affected resources and data sources. --->
|
||||
|
||||
* `docker_XXXXX`
|
||||
|
||||
### Terraform Configuration Files
|
||||
|
||||
<!--- Information about code formatting: https://help.github.com/articles/basic-writing-and-formatting-syntax/#quoting-code --->
|
||||
|
||||
```hcl
|
||||
# Copy-paste your Terraform configurations here - 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: https://keybase.io/hashicorp
|
||||
```
|
||||
|
||||
### Debug Output
|
||||
|
||||
<!---
|
||||
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.
|
||||
|
||||
To obtain the debug output, see the [Terraform documentation on debugging](https://www.terraform.io/docs/internals/debugging.html).
|
||||
--->
|
||||
|
||||
### Panic Output
|
||||
|
||||
<!--- If Terraform produced a panic, please provide a link to a GitHub Gist containing the output of the `crash.log`. --->
|
||||
|
||||
### Expected Behaviour
|
||||
|
||||
<!--- What should have happened? --->
|
||||
|
||||
### Actual Behaviour
|
||||
|
||||
<!--- What actually happened? --->
|
||||
|
||||
### Steps to Reproduce
|
||||
|
||||
<!--- Please list the steps required to reproduce the issue. --->
|
||||
|
||||
1. `terraform apply`
|
||||
|
||||
### Important Factoids
|
||||
|
||||
<!--- Are there anything atypical about your accounts that we should know? For example: Running in a Azure China/Germany/Government? --->
|
||||
|
||||
### References
|
||||
|
||||
<!---
|
||||
Information about referencing Github Issues: https://help.github.com/articles/basic-writing-and-formatting-syntax/#referencing-issues-and-pull-requests
|
||||
|
||||
Are there any other GitHub issues (open or closed) or pull requests that should be linked here? Such as vendor documentation?
|
||||
--->
|
||||
|
||||
* #0000
|
||||
48
.github/ISSUE_TEMPLATE/Feature_Request.md
vendored
Normal file
48
.github/ISSUE_TEMPLATE/Feature_Request.md
vendored
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
---
|
||||
name: 🚀 Feature Request
|
||||
about: I have a suggestion (and might want to implement myself 🙂)!
|
||||
title: Support for [thing]
|
||||
|
||||
---
|
||||
|
||||
<!--- Please keep this note for the community --->
|
||||
|
||||
### Community Note
|
||||
|
||||
* 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
|
||||
* Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request
|
||||
* If you are interested in working on this issue or have submitted a pull request, please leave a comment
|
||||
|
||||
<!--- Thank you for keeping this note for the community --->
|
||||
|
||||
### Description
|
||||
|
||||
<!--- Please leave a helpful description of the feature request here. --->
|
||||
|
||||
### New or Affected Resource(s)
|
||||
|
||||
<!--- Please list the new or affected resources and data sources. --->
|
||||
|
||||
* docker_XXXXX
|
||||
|
||||
### Potential Terraform Configuration
|
||||
|
||||
<!--- Information about code formatting: https://help.github.com/articles/basic-writing-and-formatting-syntax/#quoting-code --->
|
||||
|
||||
```hcl
|
||||
# Copy-paste your Terraform configurations here - 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.
|
||||
```
|
||||
|
||||
### References
|
||||
|
||||
<!---
|
||||
Information about referencing Github Issues: https://help.github.com/articles/basic-writing-and-formatting-syntax/#referencing-issues-and-pull-requests
|
||||
|
||||
Are there any other GitHub issues (open or closed) or pull requests that should be linked here? Vendor blog posts or documentation? For example:
|
||||
|
||||
* https://azure.microsoft.com/en-us/roadmap/virtual-network-service-endpoint-for-azure-cosmos-db/
|
||||
--->
|
||||
|
||||
* #0000
|
||||
11
.github/ISSUE_TEMPLATE/config.yml
vendored
Normal file
11
.github/ISSUE_TEMPLATE/config.yml
vendored
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
blank_issues_enabled: false
|
||||
contact_links:
|
||||
- name: Terraform Docker Provider Questions
|
||||
url: https://gophers.slack.com/archives/C01G9TN5V36
|
||||
about: GitHub issues in this repository are only intended for bug reports and feature requests. Other issues will be closed. Please ask and answer questions through the Terraform Azure Provider Community Forum.
|
||||
- name: Terraform Core Bug Reports and Feature Requests
|
||||
url: https://github.com/hashicorp/terraform/issues/new/choose
|
||||
about: Terraform Core, which handles the Terraform configuration language, CLI commands, and resource dependency graph, has its own codebase. Bug reports and feature requests for those pieces of functionality should be directed to that repository.
|
||||
- name: Terraform Language or Workflow Questions
|
||||
url: https://discuss.hashicorp.com/c/terraform-core
|
||||
about: Please ask and answer language or workflow related questions through the Terraform Core Community Forum.
|
||||
Loading…
Reference in a new issue