-
Notifications
You must be signed in to change notification settings - Fork 26
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
10 changed files
with
105 additions
and
37 deletions.
There are no files selected for viewing
File renamed without changes.
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,31 @@ | ||
--- | ||
name: 🐛 Bug Report | ||
about: Is something not working as expected? | ||
labels: bug | ||
--- | ||
|
||
### Bug report | ||
|
||
> What is the problem? | ||
### Steps to reproduce | ||
|
||
> Please post the relevant parts of the failing terraform code here (remember to remove sensitive information): | ||
```hcl | ||
module "template" { | ||
name_prefix = "template-basic-example" | ||
} | ||
``` | ||
|
||
### Terraform version | ||
|
||
> Run `terraform version` and post the output here: | ||
```bash | ||
$ terraform version | ||
|
||
Terraform v0.12.7 | ||
+ provider.aws v2.27.0 | ||
``` | ||
|
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,8 @@ | ||
--- | ||
name: 🚀 Feature Request | ||
about: I have a suggestion! | ||
--- | ||
|
||
### Feature request | ||
|
||
> How can we improve the module? |
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,25 @@ | ||
name: workflow | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Install Go | ||
uses: actions/setup-go@v1 | ||
with: { go-version: 1.14 } | ||
|
||
- name: Install Terraform | ||
run: | | ||
curl -sL https://releases.hashicorp.com/terraform/0.12.21/terraform_0.12.21_linux_amd64.zip -o terraform.zip | ||
sudo unzip terraform.zip -d /usr/bin && rm -f terraform.zip | ||
- name: Install Taskfile | ||
run: curl -sL https://taskfile.dev/install.sh | sh | ||
|
||
- name: Run tests | ||
run: ./bin/task test |
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 |
---|---|---|
|
@@ -3,8 +3,8 @@ | |
**/*.tfstate* | ||
crash.log | ||
|
||
#InteliJ IDE | ||
# IntelliJ IDE | ||
.idea/ | ||
|
||
#Mac files | ||
.DS_Store | ||
# Taskfile | ||
.task/ |
This file was deleted.
Oops, something went wrong.
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
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