Skip to content

Commit

Permalink
fix:Update module_version to latest (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
Rupalgw committed Feb 27, 2024
1 parent 4690816 commit b455923
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
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:
call-workflow-changelog:
uses: clouddrove/github-shared-workflows/.github/workflows/changelog.yml@master
uses: clouddrove/github-shared-workflows/.github/workflows/changelog.yml@1.2.1
secrets: inherit
with:
branch: 'master'
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@master
uses: clouddrove/github-shared-workflows/.github/workflows/tfsec.yml@1.2.1
secrets: inherit
with:
working_directory: '.'
8 changes: 4 additions & 4 deletions _example/example.tf
Original file line number Diff line number Diff line change
Expand Up @@ -14,24 +14,24 @@ module "resource_group" {

module "vnet" {
source = "clouddrove/vnet/azure"
version = "1.0.3"
version = "1.0.4"

name = "app"
environment = "test"
resource_group_name = module.resource_group.resource_group_name
location = module.resource_group.resource_group_location
address_space = "10.0.0.0/16"
address_spaces = ["10.0.0.0/16"]
}

module "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
location = module.resource_group.resource_group_location
virtual_network_name = join("", module.vnet.vnet_name)
virtual_network_name = module.vnet.vnet_name

#subnet
subnet_names = ["subnet1"]
Expand Down
4 changes: 2 additions & 2 deletions versions.tf
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# Terraform version
terraform {
required_version = ">= 1.3.6"
required_version = ">= 1.6.6"
}

terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = ">=3.0.0"
version = ">=3.89.0"
}
}
}

0 comments on commit b455923

Please sign in to comment.