Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add GitHub Issue and Pull Request Templates #26

Merged
merged 1 commit into from
May 29, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
64 changes: 64 additions & 0 deletions .github/ISSUE_TEMPLATE/Bug_Report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
---
name: 🐛 Bug Report
about: If something isn't working as expected 🤔.

---

<!--- 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 other comments that do not add relevant new information or questions, 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 --->

### Environment and Versions

* Terraform Executor: Local workstation / EC2 Instance / ECS / Terraform Cloud or Enterprise / Other (please specify)
* If outside Terraform Cloud/Enterprise, which operating system and version: Linux/macOS/Windows
* Terraform CLI version: `terraform -v`
* Terraform AWS Provider version: `terraform providers -v`
* Terraform Backend/Provider Configuration:

```hcl
# Copy-paste your Terraform S3 Backend or AWS Provider configurations here
```

* AWS environment variables (if any):

```sh
AWS_XXX=example
```

* AWS configuration files (if any):

```txt
# Copy-paste your AWS shared configuration file contents here
```

### Expected Behavior

What should have happened?

### Actual Behavior

What actually happened?

### Steps to Reproduce

<!--- Please list the steps required to reproduce the issue. --->

1. `terraform init`
1. `terraform apply`

### 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).

### References

Are there any other GitHub issues (open or closed) or pull requests that should be linked here? Terraform or AWS documentation?
39 changes: 39 additions & 0 deletions .github/ISSUE_TEMPLATE/Feature_Request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
---
name: 🚀 Feature Request
about: I have a suggestion (and might want to implement myself 🙂)!
labels: enhancement
---

<!--- 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 other comments that do not add relevant new information or questions, 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.

### Potential Library Implementation

```go
// Please provide an example Go implementation showing
// how this functionality may look within this codebase.
```

### Potential Terraform Backend/Provider Configuration

```hcl
# Please provide an example Terraform configuration showing
# how this functionality will be implemented, if relevant.
```

### References

Are there any other GitHub issues (open or closed) or pull requests that should be linked here? Terraform or AWS documentation?

Please ensure that Terraform S3 Backend and Terraform AWS Provider GitHub feature requests are created and linked here.
17 changes: 17 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
blank_issues_enabled: false
contact_links:
- name: Terraform AWS Provider Bug Reports and Feature Requests
url: https://github.com/terraform-providers/terraform-provider-aws/issues/new/choose
about: Terraform AWS Provider specific issues should be raised in the Terraform AWS Provider codebase.
- name: Terraform AWS Provider Questions
url: https://discuss.hashicorp.com/c/terraform-providers/tf-aws
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 AWS Provider Community Forum.
- name: Terraform S3 Backend Bug Reports and Feature Requests
url: https://github.com/hashicorp/terraform/issues/new/choose
about: Terraform S3 Backend specific issues should be raised in the Terraform Core codebase.
- name: Terraform S3 Backend, Configuration Language, or Workflow Questions
url: https://discuss.hashicorp.com/c/terraform-core
about: Please ask and answer S3 Backend, language, or workflow related questions through the Terraform Core Community Forum.
- name: Security Vulnerability
url: https://www.hashicorp.com/security.html
about: Please report security vulnerabilities responsibly.
12 changes: 12 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<!--- Please keep this note for the community --->

### Community Note

* Please vote on this pull request by adding a 👍 [reaction](https://blog.github.com/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/) to the original pull request comment to help the community and maintainers prioritize this request
* Please do not leave "+1" or other comments that do not add relevant new information or questions, they generate extra noise for pull request followers and do not help prioritize the request

<!--- Thank you for keeping this note for the community --->

Reference: #0000 <!--- Pull Requests should have an associated issue or may be closed --->

Please briefly describe the changes proposed in this pull request.