diff --git a/.github/ISSUE_TEMPLATE/Bug_Report.md b/.github/ISSUE_TEMPLATE/Bug_Report.md new file mode 100644 index 00000000..79f4caec --- /dev/null +++ b/.github/ISSUE_TEMPLATE/Bug_Report.md @@ -0,0 +1,64 @@ +--- +name: 🐛 Bug Report +about: If something isn't working as expected 🤔. + +--- + + + +### 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 + + + +### 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 + + + +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? diff --git a/.github/ISSUE_TEMPLATE/Feature_Request.md b/.github/ISSUE_TEMPLATE/Feature_Request.md new file mode 100644 index 00000000..75ad7a6c --- /dev/null +++ b/.github/ISSUE_TEMPLATE/Feature_Request.md @@ -0,0 +1,39 @@ +--- +name: 🚀 Feature Request +about: I have a suggestion (and might want to implement myself 🙂)! +labels: enhancement +--- + + + +### 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 + + + +### 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. diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 00000000..d04bd1df --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -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. diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 00000000..9dcc3ad4 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,12 @@ + + +### 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 + + + +Reference: #0000 + +Please briefly describe the changes proposed in this pull request.