You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
9
+
10
+
If your request is for a new feature, please use the `Feature request` template.
11
+
12
+
-[ ] ✋ I have searched the open/closed issues and my issue is not listed.
13
+
14
+
## ⚠️ Note
15
+
16
+
Before you submit an issue, please perform the following first:
17
+
18
+
1. Remove the local `.terraform` directory (! ONLY if state is stored remotely, which hopefully you are following that best practice!): `rm -rf .terraform/`
19
+
2. Re-initialize the project root to pull down modules: `terraform init`
20
+
3. Re-attempt your terraform plan or apply and check if the issue still persists
21
+
22
+
## Versions
23
+
24
+
- Module version [Required]:
25
+
26
+
- Terraform version:
27
+
<!-- Execute terraform -version -->
28
+
- Provider version(s):
29
+
<!-- Execute: terraform providers -version -->
30
+
31
+
## Reproduction Code [Required]
32
+
33
+
<!-- REQUIRED -->
34
+
35
+
Steps to reproduce the behavior:
36
+
37
+
<!-- Are you using workspaces? -->
38
+
<!-- Have you cleared the local cache (see Notice section above)? -->
39
+
<!-- List steps in order that led up to the issue you encountered -->
40
+
41
+
## Expected behavior
42
+
43
+
<!-- A clear and concise description of what you expected to happen -->
44
+
45
+
## Actual behavior
46
+
47
+
<!-- A clear and concise description of what actually happened -->
48
+
49
+
### Terminal Output Screenshot(s)
50
+
51
+
<!-- Optional but helpful -->
52
+
53
+
## Additional context
54
+
55
+
<!-- Add any other context about the problem here -->
#### Is your feature request related to a problem? Please describe
11
-
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
6
+
<!--- Please keep this note for the community --->
7
+
8
+
### Community Note
9
+
10
+
* 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
11
+
* 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
12
+
* If you are interested in working on this issue or have submitted a pull request, please leave a comment
12
13
14
+
<!--- Thank you for keeping this note for the community --->
13
15
14
-
#### Describe the solution you'd like
15
-
A clear and concise description of what you want to happen.
16
+
#### What is the outcome that you are trying to reach?
16
17
18
+
<!-- A clear and concise description of what the problem is. -->
17
19
18
-
#### Describe alternatives you've considered
19
-
A clear and concise description of any alternative solutions or features you've considered.
20
+
#### Describe the solution you would like
20
21
22
+
<!-- A clear and concise description of what you want to happen. -->
23
+
24
+
#### Describe alternatives you have considered
25
+
26
+
<!-- A clear and concise description of any alternative solutions or features you've considered. -->
21
27
22
28
#### Additional context
23
-
Add any other context or screenshots about the feature request here.
29
+
30
+
<!-- Add any other context or screenshots about the feature request here. -->
Copy file name to clipboardExpand all lines: .github/PULL_REQUEST_TEMPLATE.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -1,26 +1,26 @@
1
-
2
1
### What does this PR do?
3
2
4
-
<!-- A brief description of the change being made with this pull request. -->
3
+
🛑 Please open an issue first to discuss any significant work and flesh out details/direction - we would hate for your time to be wasted.
4
+
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.
5
5
6
+
<!-- A brief description of the change being made with this pull request. -->
6
7
7
8
### Motivation
8
9
9
10
<!-- What inspired you to submit this pull request? -->
10
11
11
-
12
12
### More
13
13
14
-
-[ ] Yes, I have tested the PR using my local account setup (Provide any test evidence report under Additional Notes)
14
+
-[ ] Yes, I have tested the PR using my local account setup (Provide any test evidence report under Additional Notes)
15
15
-[ ] Yes, I have added a new example under [examples](https://github.com/aws-ia/terraform-aws-eks-blueprints/tree/main/examples) to support my PR
16
16
-[ ] Yes, I have created another PR for add-ons under [add-ons](https://github.com/aws-samples/eks-blueprints-add-ons) repo (if applicable)
17
17
-[ ] Yes, I have updated the [docs](https://github.com/aws-ia/terraform-aws-eks-blueprints/tree/main/docs) for this feature
18
18
-[ ] Yes, I ran `pre-commit run -a` with this PR
19
19
20
-
21
20
**Note**: Not all the PRs required examples and docs except a new pattern or add-on added.
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+9-11
Original file line number
Diff line number
Diff line change
@@ -6,24 +6,23 @@ documentation, we greatly value feedback and contributions from our community.
6
6
Please read through this document before submitting any issues or pull requests to ensure we have all the necessary
7
7
information to effectively respond to your bug report or contribution.
8
8
9
-
10
9
## Reporting Bugs/Feature Requests
11
10
12
11
We welcome you to use the GitHub issue tracker to report bugs or suggest features.
13
12
14
13
When filing an issue, please check existing open, or recently closed, issues to make sure somebody else hasn't already
15
14
reported the issue. Please try to include as much information as you can. Details like these are incredibly useful:
16
15
17
-
* A reproducible test case or series of steps
18
-
* The version of our code being used
19
-
* Any modifications you've made relevant to the bug
20
-
* Anything unusual about your environment or deployment
21
-
16
+
- A reproducible test case or series of steps
17
+
- The version of our code being used
18
+
- Any modifications you've made relevant to the bug
19
+
- Anything unusual about your environment or deployment
22
20
23
21
## Contributing via Pull Requests
22
+
24
23
Contributions via pull requests are much appreciated. Before sending us a pull request, please ensure that:
25
24
26
-
1. You are working against the latest source on the *main* branch.
25
+
1. You are working against the latest source on the _main_ branch.
27
26
2. You check existing open, and recently merged, pull requests to make sure someone else hasn't addressed the problem already.
28
27
3. You open an issue to discuss any significant work - we would hate for your time to be wasted.
29
28
@@ -39,20 +38,19 @@ To send us a pull request, please:
39
38
GitHub provides additional document on [forking a repository](https://help.github.com/articles/fork-a-repo/) and
40
39
[creating a pull request](https://help.github.com/articles/creating-a-pull-request/).
41
40
42
-
43
41
## Finding contributions to work on
44
-
Looking at the existing issues is a great way to find something to contribute on. As our projects, by default, use the default GitHub issue labels (enhancement/bug/duplicate/help wanted/invalid/question/wontfix), looking at any 'help wanted' issues is a great place to start.
45
42
43
+
Looking at the existing issues is a great way to find something to contribute on. As our projects, by default, use the default GitHub issue labels (enhancement/bug/duplicate/help wanted/invalid/question/wontfix), looking at any 'help wanted' issues is a great place to start.
46
44
47
45
## Code of Conduct
46
+
48
47
This project has adopted the [Amazon Open Source Code of Conduct](https://aws.github.io/code-of-conduct).
49
48
For more information see the [Code of Conduct FAQ](https://aws.github.io/code-of-conduct-faq) or contact
If you discover a potential security issue in this project we ask that you notify AWS/Amazon Security via our [vulnerability reporting page](http://aws.amazon.com/security/vulnerability-reporting/). Please do **not** create a public github issue.
55
52
53
+
If you discover a potential security issue in this project we ask that you notify AWS/Amazon Security via our [vulnerability reporting page](http://aws.amazon.com/security/vulnerability-reporting/). Please do **not** create a public github issue.
0 commit comments