File tree 12 files changed +15
-14
lines changed
12 files changed +15
-14
lines changed Original file line number Diff line number Diff line change 7
7
workflow_dispatch :
8
8
jobs :
9
9
assignee :
10
- uses : clouddrove/github-shared-workflows/.github/workflows/auto_assignee.yml@1.0.9
10
+ uses : clouddrove/github-shared-workflows/.github/workflows/auto_assignee.yml@1.2.1
11
11
secrets :
12
12
GITHUB : ${{ secrets.GITHUB }}
13
13
with :
Original file line number Diff line number Diff line change 4
4
pull_request :
5
5
jobs :
6
6
auto-merge :
7
- uses : clouddrove/github-shared-workflows/.github/workflows/auto_merge.yml@1.0.9
7
+ uses : clouddrove/github-shared-workflows/.github/workflows/auto_merge.yml@1.2.1
8
8
secrets :
9
9
GITHUB : ${{ secrets.GITHUB }}
10
10
with :
Original file line number Diff line number Diff line change 7
7
workflow_dispatch :
8
8
jobs :
9
9
changelog :
10
- uses : clouddrove/github-shared-workflows/.github/workflows/changelog.yml@1.0.9
10
+ uses : clouddrove/github-shared-workflows/.github/workflows/changelog.yml@1.2.1
11
11
secrets : inherit
12
12
with :
13
13
branch : ' master'
Original file line number Diff line number Diff line change 6
6
workflow_dispatch :
7
7
jobs :
8
8
complete-example :
9
- uses : clouddrove/github-shared-workflows/.github/workflows/tf-checks.yml@1.0.9
9
+ uses : clouddrove/github-shared-workflows/.github/workflows/tf-checks.yml@1.2.1
10
10
with :
11
11
working_directory : ' ./_example/complete/'
12
12
13
13
basic-example :
14
- uses : clouddrove/github-shared-workflows/.github/workflows/tf-checks.yml@1.0.9
14
+ uses : clouddrove/github-shared-workflows/.github/workflows/tf-checks.yml@1.2.1
15
15
with :
16
16
working_directory : ' ./_example/basic/'
17
17
Original file line number Diff line number Diff line change 6
6
workflow_dispatch :
7
7
jobs :
8
8
tf-lint :
9
- uses : clouddrove/github-shared-workflows/.github/workflows/tf-lint.yml@1.0.9
9
+ uses : clouddrove/github-shared-workflows/.github/workflows/tf-lint.yml@1.2.1
10
10
secrets :
11
11
GITHUB : ${{ secrets.GITHUB }}
Original file line number Diff line number Diff line change 5
5
workflow_dispatch :
6
6
jobs :
7
7
tfsec :
8
- uses : clouddrove/github-shared-workflows/.github/workflows/tfsec.yml@1.0.9
8
+ uses : clouddrove/github-shared-workflows/.github/workflows/tfsec.yml@1.2.1
9
9
secrets : inherit
10
10
with :
11
11
working_directory : ' .'
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ terraform {
7
7
required_providers {
8
8
azurerm = {
9
9
source = " hashicorp/azurerm"
10
- version = " >=3.85 .0"
10
+ version = " >=3.87 .0"
11
11
}
12
12
}
13
13
}
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ locals {
15
15
module "resource_group" {
16
16
source = " clouddrove/resource-group/azure"
17
17
version = " 1.0.2"
18
- name = " app "
18
+ name = " app1 "
19
19
environment = " test"
20
20
label_order = [" name" , " environment" ]
21
21
location = " Canada Central"
@@ -39,7 +39,7 @@ module "vnet" {
39
39
# #-----------------------------------------------------------------------------
40
40
module "name_specific_subnet" {
41
41
source = " clouddrove/subnet/azure"
42
- version = " 1.0.2 "
42
+ version = " 1.1.0 "
43
43
name = " app"
44
44
environment = " test"
45
45
resource_group_name = module. resource_group . resource_group_name
@@ -48,7 +48,7 @@ module "name_specific_subnet" {
48
48
49
49
# subnet
50
50
specific_name_subnet = true
51
- specific_subnet_names = " AzureBastionSubnet"
51
+ specific_subnet_names = [ " AzureBastionSubnet" ]
52
52
subnet_prefixes = [" 10.0.1.0/24" ]
53
53
enable_route_table = false
54
54
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ terraform {
7
7
required_providers {
8
8
azurerm = {
9
9
source = " hashicorp/azurerm"
10
- version = " >=3.85 .0"
10
+ version = " >=3.87 .0"
11
11
}
12
12
}
13
13
}
Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ resource "azurerm_monitor_diagnostic_setting" "bastion-diagnostic" {
85
85
# ---------------------------------------------
86
86
resource "azurerm_monitor_diagnostic_setting" "pip_diagnostic" {
87
87
count = var. enabled && var. diagnostic_setting_enable ? 1 : 0
88
- name = format (" %s-bastion -pip-diagnostic-log" , module. labels . id )
88
+ name = format (" %s-bastion_test -pip-diagnostic-log" , module. labels . id )
89
89
target_resource_id = azurerm_public_ip. pip [0 ]. id
90
90
storage_account_id = var. storage_account_id
91
91
eventhub_name = var. eventhub_name
Original file line number Diff line number Diff line change @@ -195,5 +195,6 @@ variable "pip_logs" {
195
195
default = {
196
196
enabled = true
197
197
category_group = [" AllLogs" ]
198
+ description = " Is this Diagnostic logs enabled? Defaults to True."
198
199
}
199
200
}
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ terraform {
7
7
required_providers {
8
8
azurerm = {
9
9
source = " hashicorp/azurerm"
10
- version = " >=3.85 .0"
10
+ version = " >=3.87 .0"
11
11
}
12
12
}
13
13
}
You can’t perform that action at this time.
0 commit comments