-
Notifications
You must be signed in to change notification settings - Fork 150
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
74 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,40 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
title: '' | ||
labels: bug | ||
assignees: eerkunt | ||
|
||
--- | ||
|
||
**Description :** | ||
<A clear and concise description of what the bug is.> | ||
|
||
**To Reproduce** | ||
1. <Either a sample `terraform` code, or your `terraform plan` file if it doesn't have any confidential information> | ||
```hcl | ||
resource "aws_s3_bucket" "example_code" { | ||
bucket = "This is just a sample code" | ||
} | ||
``` | ||
2. <Used `terraform-compliance` parameters> | ||
3. <Indication about either run via docker container or python package> | ||
4. <Error output> | ||
5. <Your feature/scenario/steps> | ||
```gherkin | ||
Given I have .... | ||
When it contains ... | ||
Then it must .... | ||
And it must ... | ||
``` | ||
|
||
**Expected behavior :** | ||
<A clear and concise description of what you expected to happen.> | ||
|
||
**Tested versions :** | ||
- <terraform-compliance version (`terraform-compliance -v`)> | ||
- <terraform version (`terraform -v`)> | ||
- <python runtime version, if running as a python package (`python --version`)> | ||
|
||
**Additional context** | ||
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,23 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest an idea for this project | ||
title: '' | ||
labels: enhancement | ||
assignees: '' | ||
|
||
--- | ||
|
||
## Feature Request | ||
|
||
**Feature description :** | ||
<A clear and concise description of what the problem is. Ex. I'm having problems with [...]> | ||
<Please try to link the issue id(s), if there is an issue about the problem.> | ||
|
||
**Suggested Solution description ( if you have any ) :** | ||
<A clear and concise description of what you want to happen.> | ||
|
||
**Describe alternatives you've considered :** | ||
<A clear and concise description of any alternative solutions or features you've considered.> | ||
|
||
**Additional context :** | ||
<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,11 @@ | ||
--- | ||
name: Question Template | ||
about: Question about the project | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
** Question : ** | ||
<A clear describe of your question. Ex, how can I do [...] for [...] with terraform-compliance ?> |