Skip to content

Commit 26eed41

Browse files
committed
fix: updated azure latest version
1 parent 958b69e commit 26eed41

File tree

12 files changed

+15
-14
lines changed

12 files changed

+15
-14
lines changed

.github/workflows/auto_assignee.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
workflow_dispatch:
88
jobs:
99
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
1111
secrets:
1212
GITHUB: ${{ secrets.GITHUB }}
1313
with:

.github/workflows/automerge.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
pull_request:
55
jobs:
66
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
88
secrets:
99
GITHUB: ${{ secrets.GITHUB }}
1010
with:

.github/workflows/changelog.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
workflow_dispatch:
88
jobs:
99
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
1111
secrets: inherit
1212
with:
1313
branch: 'master'

.github/workflows/tf-checks.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ on:
66
workflow_dispatch:
77
jobs:
88
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
1010
with:
1111
working_directory: './_example/complete/'
1212

1313
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
1515
with:
1616
working_directory: './_example/basic/'
1717

.github/workflows/tflint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ on:
66
workflow_dispatch:
77
jobs:
88
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
1010
secrets:
1111
GITHUB: ${{ secrets.GITHUB }}

.github/workflows/tfsec.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
workflow_dispatch:
66
jobs:
77
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
99
secrets: inherit
1010
with:
1111
working_directory: '.'

_example/basic/versions.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ terraform {
77
required_providers {
88
azurerm = {
99
source = "hashicorp/azurerm"
10-
version = ">=3.85.0"
10+
version = ">=3.87.0"
1111
}
1212
}
1313
}

_example/complete/example.tf

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ locals {
1515
module "resource_group" {
1616
source = "clouddrove/resource-group/azure"
1717
version = "1.0.2"
18-
name = "app"
18+
name = "app1"
1919
environment = "test"
2020
label_order = ["name", "environment"]
2121
location = "Canada Central"
@@ -39,7 +39,7 @@ module "vnet" {
3939
##-----------------------------------------------------------------------------
4040
module "name_specific_subnet" {
4141
source = "clouddrove/subnet/azure"
42-
version = "1.0.2"
42+
version = "1.1.0"
4343
name = "app"
4444
environment = "test"
4545
resource_group_name = module.resource_group.resource_group_name
@@ -48,7 +48,7 @@ module "name_specific_subnet" {
4848

4949
#subnet
5050
specific_name_subnet = true
51-
specific_subnet_names = "AzureBastionSubnet"
51+
specific_subnet_names = ["AzureBastionSubnet"]
5252
subnet_prefixes = ["10.0.1.0/24"]
5353
enable_route_table = false
5454

_example/complete/versions.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ terraform {
77
required_providers {
88
azurerm = {
99
source = "hashicorp/azurerm"
10-
version = ">=3.85.0"
10+
version = ">=3.87.0"
1111
}
1212
}
1313
}

main.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ resource "azurerm_monitor_diagnostic_setting" "bastion-diagnostic" {
8585
#---------------------------------------------
8686
resource "azurerm_monitor_diagnostic_setting" "pip_diagnostic" {
8787
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)
8989
target_resource_id = azurerm_public_ip.pip[0].id
9090
storage_account_id = var.storage_account_id
9191
eventhub_name = var.eventhub_name

variables.tf

+1
Original file line numberDiff line numberDiff line change
@@ -195,5 +195,6 @@ variable "pip_logs" {
195195
default = {
196196
enabled = true
197197
category_group = ["AllLogs"]
198+
description = "Is this Diagnostic logs enabled? Defaults to True."
198199
}
199200
}

versions.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ terraform {
77
required_providers {
88
azurerm = {
99
source = "hashicorp/azurerm"
10-
version = ">=3.85.0"
10+
version = ">=3.87.0"
1111
}
1212
}
1313
}

0 commit comments

Comments
 (0)