Skip to content

Commit 43edd80

Browse files
d4kverma13archit
andauthored
fix: resource naming update and azurerm major version update (#22)
* feat: resource naming update and azure rm major version update * fix minor changes * fix fmt error * Update CODEOWNERS --------- Co-authored-by: Archit Chopra <[email protected]>
1 parent 1bea796 commit 43edd80

File tree

17 files changed

+99
-62
lines changed

17 files changed

+99
-62
lines changed

.deepsource.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
version = 1
2+
3+
[[analyzers]]
4+
name = "terraform"

.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-ci
2+
* @anmolnagpal @clouddrove/terraform-azure-admins @clouddrove-ci

.github/dependabot.yml

Lines changed: 31 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,42 @@
55

66
version: 2
77
updates:
8+
89
- package-ecosystem: "terraform" # See documentation for possible values
910
directory: "/" # Location of package manifests
1011
schedule:
1112
interval: "weekly"
13+
# Add assignees
14+
assignees:
15+
- "clouddrove-ci"
16+
# Add reviewer
17+
reviewers:
18+
- "approvers"
19+
# Allow up to 3 open pull requests for pip dependencies
20+
open-pull-requests-limit: 3
21+
1222
- package-ecosystem: "terraform" # See documentation for possible values
13-
directory: "examples" # Location of package manifests
23+
directory: "/examples/basic" # Location of package manifests
1424
schedule:
1525
interval: "weekly"
26+
# Add assignees
27+
assignees:
28+
- "clouddrove-ci"
29+
# Add reviewer
30+
reviewers:
31+
- "approvers"
32+
# Allow up to 3 open pull requests for pip dependencies
33+
open-pull-requests-limit: 3
1634

35+
- package-ecosystem: "terraform" # See documentation for possible values
36+
directory: "/examples/complete" # Location of package manifests
37+
schedule:
38+
interval: "weekly"
39+
# Add assignees
40+
assignees:
41+
- "clouddrove-ci"
42+
# Add reviewer
43+
reviewers:
44+
- "approvers"
45+
# Allow up to 3 open pull requests for pip dependencies
46+
open-pull-requests-limit: 3

.github/workflows/auto_assignee.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ jobs:
1111
secrets:
1212
GITHUB: ${{ secrets.GITHUB }}
1313
with:
14-
assignees: 'clouddrove-ci'
14+
assignees: 'clouddrove-ci'

.github/workflows/automerge.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
2-
name: Auto merge
3-
on:
4-
pull_request:
5-
jobs:
6-
auto-merge:
7-
uses: clouddrove/github-shared-workflows/.github/workflows/auto_merge.yml@master
8-
secrets:
9-
GITHUB: ${{ secrets.GITHUB }}
10-
with:
11-
tfcheck: 'complete-example / Check code format'
1+
---
2+
name: Auto merge
3+
on:
4+
pull_request:
5+
jobs:
6+
auto-merge:
7+
uses: clouddrove/github-shared-workflows/.github/workflows/auto_merge.yml@master
8+
secrets:
9+
GITHUB: ${{ secrets.GITHUB }}
10+
with:
11+
tfcheck: 'complete-example / Check code format'

.github/workflows/changelog.yml renamed to .github/workflows/changelog.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ jobs:
1010
uses: clouddrove/github-shared-workflows/.github/workflows/changelog.yml@master
1111
secrets: inherit
1212
with:
13-
branch: 'master'
13+
branch: 'master'

.github/workflows/tf-checks.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,12 @@ on:
55
pull_request:
66
workflow_dispatch:
77
jobs:
8-
complete-example:
8+
basic-example:
99
uses: clouddrove/github-shared-workflows/.github/workflows/tf-checks.yml@master
10-
secrets: inherit
1110
with:
12-
working_directory: './examples/'
11+
working_directory: './examples/basic/'
12+
13+
complete-example:
14+
uses: clouddrove/github-shared-workflows/.github/workflows/tf-checks.yml@master
15+
with:
16+
working_directory: './examples/complete/'

.github/workflows/tflint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ jobs:
88
tf-lint:
99
uses: clouddrove/github-shared-workflows/.github/workflows/tf-lint.yml@master
1010
secrets:
11-
GITHUB: ${{ secrets.GITHUB }}
11+
GITHUB: ${{ secrets.GITHUB }}

.github/workflows/tfsec.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ jobs:
88
uses: clouddrove/github-shared-workflows/.github/workflows/tfsec.yml@master
99
secrets: inherit
1010
with:
11-
working_directory: '.'
11+
working_directory: '.'

_test/log_analytics_test.go

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

0 commit comments

Comments
 (0)