Skip to content

Commit 93cf4d6

Browse files
Merge pull request #2 from terraform-do-modules/internal-418
feat: initial commit
2 parents a8985f1 + 5d3d580 commit 93cf4d6

30 files changed

+501
-95
lines changed

.editorconfig

Lines changed: 0 additions & 30 deletions
This file was deleted.

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# These owners will be the default owners for everything in the repo.
2-
* @anmolnagpal @clouddrove/approvers @clouddrove-ci
2+
@terraform-do-modules/approvers @clouddrove-ci @anmolnagpal

.github/dependabot.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ updates:
99
- package-ecosystem: "github-actions"
1010
directory: "/"
1111
schedule:
12-
interval: "daily"
12+
interval: "weekly"
1313
open-pull-requests-limit: 3
1414
assignees:
1515
- "clouddrove-ci"
@@ -30,7 +30,7 @@ updates:
3030
open-pull-requests-limit: 3
3131

3232
- package-ecosystem: "terraform" # See documentation for possible values
33-
directory: "/_example/basic" # Location of package manifests
33+
directory: "/_examples/basic" # Location of package manifests
3434
schedule:
3535
interval: "weekly"
3636
# Add assignees
@@ -43,7 +43,7 @@ updates:
4343
open-pull-requests-limit: 3
4444

4545
- package-ecosystem: "terraform" # See documentation for possible values
46-
directory: "/_example/complete" # Location of package manifests
46+
directory: "/_examples/complete" # Location of package manifests
4747
schedule:
4848
interval: "weekly"
4949
# Add assignees
@@ -53,4 +53,4 @@ updates:
5353
reviewers:
5454
- "approvers"
5555
# Allow up to 3 open pull requests for pip dependencies
56-
open-pull-requests-limit: 3
56+
open-pull-requests-limit: 3

.github/workflows/auto_assignee.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ name: Auto Assign PRs
33
on:
44
pull_request:
55
types: [opened, reopened]
6-
76
workflow_dispatch:
87
jobs:
98
assign-pr:

.github/workflows/changelog.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ on:
88
jobs:
99
call-workflow-changelog:
1010
uses: clouddrove/github-shared-workflows/.github/workflows/changelog.yml@master
11-
secrets: inherit
11+
secrets:
12+
GITHUB: ${{ secrets.GITHUB }}
1213
with:
1314
branch: 'master'

.github/workflows/readme.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ jobs:
2525
env:
2626
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2727

28-
2928
- name: 'pre-commit check errors'
3029
uses: pre-commit/action@v3.0.0
3130
continue-on-error: true

.github/workflows/tflint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ on:
66
workflow_dispatch:
77
jobs:
88
tf-lint:
9-
uses: clouddrove/test-tfsec/.github/workflows/tflint.yaml@master
9+
uses: clouddrove/github-shared-workflows/.github/workflows/tf-lint.yml@master
1010
secrets:
1111
GITHUB: ${{ secrets.GITHUB }}

.github/workflows/tfsec.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66
jobs:
77
tfsec:
88
uses: clouddrove/github-shared-workflows/.github/workflows/tfsec.yml@master
9-
secrets: inherit
9+
secrets:
10+
GITHUB: ${{ secrets.GITHUB }}
1011
with:
11-
working_directory: '.'
12+
working_directory: '.'

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -208,3 +208,4 @@ terraform.tfstate
208208
*.iml
209209
*.terraform.lock.hcl
210210
*.lock.hcl
211+
*kubeconfig

.pre-commit-config.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
repos:
2-
32
- repo: https://github.com/gruntwork-io/pre-commit
43
rev: v0.1.12 # Get the latest from: https://github.com/gruntwork-io/pre-commit/releases
54
hooks:
@@ -18,4 +17,4 @@ repos:
1817
- id: check-merge-conflict
1918
- id: debug-statements
2019
- id: check-yaml
21-
- id: check-added-large-files
20+
- id: check-added-large-files

0 commit comments

Comments
 (0)