From b784738a4dfb12be32a58e7bdbd4522eeb48abf8 Mon Sep 17 00:00:00 2001 From: Archit Chopra Date: Thu, 15 Jun 2023 17:51:15 +0530 Subject: [PATCH] fix: fixed statis checks error --- _example/basic/example.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_example/basic/example.tf b/_example/basic/example.tf index 4f13862..9390f78 100644 --- a/_example/basic/example.tf +++ b/_example/basic/example.tf @@ -11,8 +11,8 @@ module "vnet" { source = "../../" name = local.name environment = local.environment - resource_group_name = module.resource_group.resource_group_name - location = module.resource_group.resource_group_location + resource_group_name = "app-test" + location = "NorthEurope" address_space = "10.0.0.0/16" enable_network_watcher = false # To be set true when network security group flow logs are to be tracked and network watcher with specific name is to be deployed. } \ No newline at end of file