Skip to content

Commit

Permalink
fix:update module version to latest (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
Rupalgw authored Feb 27, 2024
1 parent 39d0727 commit 246e81f
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 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:
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: '.'
14 changes: 7 additions & 7 deletions _example/example.tf
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ module "resource_group" {

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

name = "app"
environment = "test"
label_order = ["name", "environment"]
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"]
enable_ddos_pp = false

depends_on = [
Expand All @@ -43,14 +43,14 @@ module "vnet" {

module "subnet_pub" {
source = "clouddrove/subnet/azure"
version = "1.0.2"
version = "1.1.0"

name = "app"
environment = "test"
label_order = ["name", "environment"]
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 = ["pub-subnet"]
Expand All @@ -72,14 +72,14 @@ module "subnet_pub" {

module "subnet_pvt" {
source = "clouddrove/subnet/azure"
version = "1.0.2"
version = "1.1.0"

name = "app"
environment = "test"
label_order = ["name", "environment"]
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 = ["pvt-subnet"]
Expand Down Expand Up @@ -135,7 +135,7 @@ module "databricks" {
network_security_group_rules_required = "AllRules"
public_network_access_enabled = true
managed_resource_group_name = "databricks-resource-group"
virtual_network_id = module.vnet.vnet_id[0]
virtual_network_id = module.vnet.vnet_id
public_subnet_name = module.subnet_pub.default_subnet_name[0]
private_subnet_name = module.subnet_pvt.default_subnet_name[0]
public_subnet_network_security_group_association_id = module.network_security_group_public.id
Expand Down
4 changes: 2 additions & 2 deletions versions.tf
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
terraform {
required_version = ">= 1.3.0"
required_version = ">= 1.6.6"
}

terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = ">=2.90.0"
version = ">=3.89.0"
}
databricks = {
source = "databricks/databricks"
Expand Down

0 comments on commit 246e81f

Please sign in to comment.