Skip to content
Open
Show file tree
Hide file tree
Changes from 15 commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
b59fbdb
feat: Created module examples for MySQL and postgreSQL
Tanveer143s Jun 28, 2024
3e600ba
feat: Created module examples for MySQL and postgreSQL
Tanveer143s Jun 28, 2024
7ab2416
feat: Created MySQL private example
Tanveer143s Jun 28, 2024
5be82b1
feat: Created MySQL public example
Tanveer143s Jun 28, 2024
6c47806
feat: Created PostgreSQL backup example
Tanveer143s Jun 28, 2024
317c500
feat: Created PostgreSQL IAM user example
Tanveer143s Jun 28, 2024
77f81e8
feat: Created PostgreSQL private example
Tanveer143s Jun 28, 2024
9d776b1
feat: Created PostgreSQL public example
Tanveer143s Jun 28, 2024
ef2ba86
feat: Created PostgreSQL IAM user example
Tanveer143s Jun 28, 2024
d3c7435
feat: Created MySQL public example
Tanveer143s Jun 28, 2024
21948e1
feat: created readme
Tanveer143s Jun 28, 2024
e06a1c7
feat: Updated readme
Tanveer143s Jun 28, 2024
699e8ed
feat: fix tflint
Tanveer143s Jun 28, 2024
797b80f
feat: Updated workflow
Tanveer143s Jun 28, 2024
e9eb3c5
feat: Updated module
Tanveer143s Jun 28, 2024
5c56f6e
fix: fixed tflint warnings
Tanveer143s Jun 28, 2024
4f23697
fix: fixed tflint warnings
Tanveer143s Jun 28, 2024
176581d
fix: fixed tfsec warnings
Tanveer143s Jun 28, 2024
31920b6
fix: fixed tfsec warnings
Tanveer143s Jun 28, 2024
dc85492
feat: removed non-required file
Tanveer143s Jun 28, 2024
7155bf2
feat: testing tfcheck version
Tanveer143s Jul 2, 2024
812632e
feat: testing tfcheck version
Tanveer143s Jul 2, 2024
ae70ce9
feat: testing tfcheck version
Tanveer143s Jul 2, 2024
42ca6a4
feat: testing tfcheck version
Tanveer143s Jul 2, 2024
c997ec6
feat: testing tfcheck version
Tanveer143s Jul 2, 2024
2ae5893
feat: testing tfcheck version
Tanveer143s Jul 2, 2024
34d7259
feat: updated tfcheck uses version
Tanveer143s Jul 2, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions .deepsource.toml

This file was deleted.

30 changes: 0 additions & 30 deletions .editorconfig

This file was deleted.

5 changes: 3 additions & 2 deletions .github/workflows/readme.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
name: readme workflow
name: Readme Workflow
on:
push:
branches:
- master
paths-ignore:
- 'README.md'
- 'docs/**'
workflow_dispatch:
jobs:
readme:
README:
uses: clouddrove/github-shared-workflows/.github/workflows/readme.yml@1.2.6
secrets:
TOKEN : ${{ secrets.GITHUB }}
Expand Down
37 changes: 31 additions & 6 deletions .github/workflows/tf-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,37 @@ on:
pull_request:
workflow_dispatch:
jobs:
basic:
uses: clouddrove/github-shared-workflows/.github/workflows/tf-checks.yml@1.2.6
mysql-backup:
uses: clouddrove/github-shared-workflows/.github/workflows/tf-checks.yml@1.2.5
with:
working_directory: './examples/basic/'
working_directory: './examples/mysql-backup/'

complete:
uses: clouddrove/github-shared-workflows/.github/workflows/tf-checks.yml@1.2.6
mysql-pvt:
uses: clouddrove/github-shared-workflows/.github/workflows/tf-checks.yml@1.2.5
with:
working_directory: './examples/complete/'
working_directory: './examples/mysql-private/'

mysql-public:
uses: clouddrove/github-shared-workflows/.github/workflows/tf-checks.yml@1.2.5
with:
working_directory: './examples/mysql-public/'

psql-backup:
uses: clouddrove/github-shared-workflows/.github/workflows/tf-checks.yml@1.2.5
with:
working_directory: './examples/psql-backup/'

psql-iam:
uses: clouddrove/github-shared-workflows/.github/workflows/tf-checks.yml@1.2.5
with:
working_directory: './examples/psql-iam/'

psql-private:
uses: clouddrove/github-shared-workflows/.github/workflows/tf-checks.yml@1.2.5
with:
working_directory: './examples/psql-private/'

psql-public:
uses: clouddrove/github-shared-workflows/.github/workflows/tf-checks.yml@1.2.5
with:
working_directory: './examples/psql-public/'
2 changes: 1 addition & 1 deletion .github/workflows/tfsec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ jobs:
uses: clouddrove/github-shared-workflows/.github/workflows/tfsec.yml@1.2.6
secrets: inherit
with:
working_directory: './examples/'
working_directory: '.'
21 changes: 0 additions & 21 deletions .pre-commit-config.yaml

This file was deleted.

201 changes: 0 additions & 201 deletions LICENSE

This file was deleted.

3 changes: 0 additions & 3 deletions examples/basic/README.md

This file was deleted.

4 changes: 0 additions & 4 deletions examples/basic/main.tf

This file was deleted.

3 changes: 0 additions & 3 deletions examples/basic/outputs.tf

This file was deleted.

3 changes: 0 additions & 3 deletions examples/basic/variables.auto.tfvars

This file was deleted.

3 changes: 0 additions & 3 deletions examples/basic/variables.tf

This file was deleted.

3 changes: 0 additions & 3 deletions examples/complete/README.md

This file was deleted.

4 changes: 0 additions & 4 deletions examples/complete/main.tf

This file was deleted.

3 changes: 0 additions & 3 deletions examples/complete/outputs.tf

This file was deleted.

3 changes: 0 additions & 3 deletions examples/complete/variables.auto.tfvars

This file was deleted.

3 changes: 0 additions & 3 deletions examples/complete/variables.tf

This file was deleted.

Loading