Skip to content

Commit

Permalink
fix: updated azure latest version
Browse files Browse the repository at this point in the history
  • Loading branch information
pranaydeokar committed Jan 19, 2024
1 parent 958b69e commit 26eed41
Show file tree
Hide file tree
Showing 12 changed files with 15 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/auto_assignee.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
workflow_dispatch:
jobs:
assignee:
uses: clouddrove/github-shared-workflows/.github/workflows/auto_assignee.yml@1.0.9
uses: clouddrove/github-shared-workflows/.github/workflows/auto_assignee.yml@1.2.1
secrets:
GITHUB: ${{ secrets.GITHUB }}
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/automerge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
pull_request:
jobs:
auto-merge:
uses: clouddrove/github-shared-workflows/.github/workflows/auto_merge.yml@1.0.9
uses: clouddrove/github-shared-workflows/.github/workflows/auto_merge.yml@1.2.1
secrets:
GITHUB: ${{ secrets.GITHUB }}
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
workflow_dispatch:
jobs:
changelog:
uses: clouddrove/github-shared-workflows/.github/workflows/changelog.yml@1.0.9
uses: clouddrove/github-shared-workflows/.github/workflows/changelog.yml@1.2.1
secrets: inherit
with:
branch: 'master'
4 changes: 2 additions & 2 deletions .github/workflows/tf-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ on:
workflow_dispatch:
jobs:
complete-example:
uses: clouddrove/github-shared-workflows/.github/workflows/tf-checks.yml@1.0.9
uses: clouddrove/github-shared-workflows/.github/workflows/tf-checks.yml@1.2.1
with:
working_directory: './_example/complete/'

basic-example:
uses: clouddrove/github-shared-workflows/.github/workflows/tf-checks.yml@1.0.9
uses: clouddrove/github-shared-workflows/.github/workflows/tf-checks.yml@1.2.1
with:
working_directory: './_example/basic/'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tflint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ on:
workflow_dispatch:
jobs:
tf-lint:
uses: clouddrove/github-shared-workflows/.github/workflows/tf-lint.yml@1.0.9
uses: clouddrove/github-shared-workflows/.github/workflows/tf-lint.yml@1.2.1
secrets:
GITHUB: ${{ secrets.GITHUB }}
2 changes: 1 addition & 1 deletion .github/workflows/tfsec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
workflow_dispatch:
jobs:
tfsec:
uses: clouddrove/github-shared-workflows/.github/workflows/tfsec.yml@1.0.9
uses: clouddrove/github-shared-workflows/.github/workflows/tfsec.yml@1.2.1
secrets: inherit
with:
working_directory: '.'
2 changes: 1 addition & 1 deletion _example/basic/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = ">=3.85.0"
version = ">=3.87.0"
}
}
}
6 changes: 3 additions & 3 deletions _example/complete/example.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ locals {
module "resource_group" {
source = "clouddrove/resource-group/azure"
version = "1.0.2"
name = "app"
name = "app1"
environment = "test"
label_order = ["name", "environment"]
location = "Canada Central"
Expand All @@ -39,7 +39,7 @@ module "vnet" {
##-----------------------------------------------------------------------------
module "name_specific_subnet" {
source = "clouddrove/subnet/azure"
version = "1.0.2"
version = "1.1.0"
name = "app"
environment = "test"
resource_group_name = module.resource_group.resource_group_name
Expand All @@ -48,7 +48,7 @@ module "name_specific_subnet" {

#subnet
specific_name_subnet = true
specific_subnet_names = "AzureBastionSubnet"
specific_subnet_names = ["AzureBastionSubnet"]
subnet_prefixes = ["10.0.1.0/24"]
enable_route_table = false

Expand Down
2 changes: 1 addition & 1 deletion _example/complete/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = ">=3.85.0"
version = ">=3.87.0"
}
}
}
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ resource "azurerm_monitor_diagnostic_setting" "bastion-diagnostic" {
#---------------------------------------------
resource "azurerm_monitor_diagnostic_setting" "pip_diagnostic" {
count = var.enabled && var.diagnostic_setting_enable ? 1 : 0
name = format("%s-bastion-pip-diagnostic-log", module.labels.id)
name = format("%s-bastion_test-pip-diagnostic-log", module.labels.id)
target_resource_id = azurerm_public_ip.pip[0].id
storage_account_id = var.storage_account_id
eventhub_name = var.eventhub_name
Expand Down
1 change: 1 addition & 0 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -195,5 +195,6 @@ variable "pip_logs" {
default = {
enabled = true
category_group = ["AllLogs"]
description = "Is this Diagnostic logs enabled? Defaults to True."
}
}
2 changes: 1 addition & 1 deletion versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = ">=3.85.0"
version = ">=3.87.0"
}
}
}

0 comments on commit 26eed41

Please sign in to comment.