-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix markdown syntax errors and add security check
- Loading branch information
1 parent
d9ba3ba
commit d4c6876
Showing
10 changed files
with
150 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,55 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Describe the bug** | ||
A clear and concise description of what the bug is. | ||
## Description | ||
|
||
Please provide a clear and concise description of the issue you are encountering, and a reproduction of your configuration (see the `examples/*` directory for references that you can copy+paste and tailor to match your configs if you are unable to copy your exact configuration). The reproduction MUST be executable by running `terraform init && terraform apply` without any further changes. | ||
|
||
If your request is for a new feature, please use the `Feature request` template. | ||
|
||
- [ ] ✋ I have searched the open/closed issues and my issue is not listed. | ||
|
||
## ⚠️ Note | ||
|
||
Before you submit an issue, please perform the following first: | ||
|
||
1. Remove the local `.terraform` directory (! ONLY if state is stored remotely, which hopefully you are following that best practice!): `rm -rf .terraform/` | ||
2. Re-initialize the project root to pull down modules: `terraform init` | ||
3. Re-attempt your terraform plan or apply and check if the issue still persists | ||
|
||
## Versions | ||
|
||
- Module version [Required]: | ||
|
||
- Terraform version: | ||
<!-- Execute terraform -version --> | ||
- Provider version(s): | ||
<!-- Execute: terraform providers -version --> | ||
|
||
## Reproduction Code [Required] | ||
|
||
<!-- REQUIRED --> | ||
|
||
Steps to reproduce the behavior: | ||
|
||
<!-- Are you using workspaces? --> | ||
<!-- Have you cleared the local cache (see Notice section above)? --> | ||
<!-- List steps in order that led up to the issue you encountered --> | ||
|
||
## Expected behavior | ||
|
||
<!-- A clear and concise description of what you expected to happen --> | ||
|
||
## Actual behavior | ||
|
||
<!-- A clear and concise description of what actually happened --> | ||
|
||
**To Reproduce** | ||
Please specify the module/lab you've encountered this issue. | ||
### Terminal Output Screenshot(s) | ||
|
||
**Expected behavior** | ||
A clear and concise description of what you expected to happen. | ||
<!-- Optional but helpful --> | ||
|
||
**Screenshots** | ||
If applicable, add screenshots to help explain your problem. | ||
## Additional context | ||
|
||
**Additional context** | ||
Add any other context about the problem here. | ||
<!-- Add any other context about the problem here --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
blank_issues_enabled: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,30 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest an idea for this project | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Is your feature request related to a problem? Please describe.** | ||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] | ||
<!--- 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 ---> | ||
|
||
#### What is the outcome that you are trying to reach? | ||
|
||
<!-- A clear and concise description of what the problem is. --> | ||
|
||
#### Describe the solution you would like | ||
|
||
<!-- A clear and concise description of what you want to happen. --> | ||
|
||
#### Describe alternatives you have considered | ||
|
||
<!-- A clear and concise description of any alternative solutions or features you've considered. --> | ||
|
||
**Describe the solution you'd like** | ||
A clear and concise description of what you want to happen. | ||
#### Additional context | ||
|
||
**Additional context** | ||
Add any other context or screenshots about the feature request here. | ||
<!-- Add any other context or screenshots about the feature request here. --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- | ||
name: Question | ||
about: I have a Question | ||
--- | ||
|
||
- [ ] ✋ I have searched the open/closed issues and my issue is not listed. | ||
|
||
#### Please describe your question here | ||
|
||
<!-- Provide as much information as possible to explain your question --> | ||
|
||
#### Provide a link to the example/module related to the question | ||
|
||
<!-- Please provide the link to the example related to this question from this repo --> | ||
|
||
#### Additional context | ||
|
||
<!-- Add any other context or screenshots about the question here --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Description | ||
|
||
<!-- | ||
🛑 Please open an issue first to discuss any significant work and flesh out details/direction - we would hate for your time to be wasted. | ||
Consult the [CONTRIBUTING](https://github.com/aws-ia/terraform-aws-eks-blueprints/blob/main/CONTRIBUTING.md#contributing-via-pull-requests) guide for submitting pull-requests. | ||
A brief description of the change being made with this pull request. | ||
--> | ||
|
||
### Motivation and Context | ||
|
||
<!-- What inspired you to submit this pull request? --> | ||
- Resolves #<issue-number> | ||
|
||
### How was this change tested? | ||
|
||
- [ ] Yes, I have tested the PR using my local account setup (Provide any test evidence report under Additional Notes) | ||
- [ ] Yes, I have updated the [docs](https://github.com/aws-ia/terraform-aws-eks-blueprints/tree/main/docs) for this feature | ||
- [ ] Yes, I ran `pre-commit run -a` with this PR | ||
|
||
### Additional Notes | ||
|
||
<!-- Anything else we should know when reviewing? --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
## Code of Conduct | ||
# Code of Conduct | ||
|
||
This project has adopted the [Amazon Open Source Code of Conduct](https://aws.github.io/code-of-conduct). | ||
For more information see the [Code of Conduct FAQ](https://aws.github.io/code-of-conduct-faq) or contact | ||
opensource-codeofconduct@amazon.com with any additional questions or comments. | ||
<opensource-codeofconduct@amazon.com> with any additional questions or comments. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
MIT No Attribution | ||
# MIT No Attribution | ||
|
||
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters