Skip to content

Commit

Permalink
fix: fixed tf checks issue
Browse files Browse the repository at this point in the history
  • Loading branch information
mamrajyadav committed Jan 3, 2024
1 parent a21e708 commit 286184f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions _example/complete/example.tf
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ module "resource_group" {
## Virtual Network module call.
##-----------------------------------------------------------------------------
module "vnet" {
depends_on = [module.resource_group]
source = "clouddrove/vnet/azure"
version = "1.0.4"
depends_on = [module.resource_group]
source = "clouddrove/vnet/azure"
version = "1.0.4"
name = local.name
environment = local.environment
resource_group_name = module.resource_group.resource_group_name
Expand All @@ -40,7 +40,7 @@ module "vnet" {
## Subnet to which network security group will be attached.
##-----------------------------------------------------------------------------
module "subnet" {
source = "clouddrove/subnet/azure"
source = "clouddrove/subnet/azure"
version = "1.0.2"
name = local.name
environment = local.environment
Expand Down

0 comments on commit 286184f

Please sign in to comment.