@@ -18,21 +18,21 @@ Type of resources are supported:
18
18
``` hcl
19
19
module "vnet" {
20
20
source = "kumarvna/vnet/azurerm"
21
- version = "2.0 .0"
21
+ version = "2.1 .0"
22
22
23
23
# By default, this module will not create a resource group, proivde the name here
24
24
# to use an existing resource group, specify the existing resource group name,
25
25
# and set the argument to `create_resource_group = true`. Location will be same as existing RG.
26
- create_resource_group = true
27
- resource_group_name = "rg-demo-westeurope-01"
28
- vnetwork_name = "vnet-demo-westeurope-001"
26
+ resource_group_name = "rg-shared-westeurope-02"
27
+ vnetwork_name = "vnet-shared-hub-westeurope-002"
29
28
location = "westeurope"
30
29
vnet_address_space = ["10.1.0.0/16"]
31
30
firewall_subnet_address_prefix = ["10.1.0.0/26"]
32
31
gateway_subnet_address_prefix = ["10.1.1.0/27"]
32
+ create_network_watcher = false
33
33
34
34
# Adding Standard DDoS Plan, and custom DNS servers (Optional)
35
- create_ddos_plan = true
35
+ create_ddos_plan = false
36
36
37
37
# Multiple Subnets, Service delegation, Service Endpoints, Network security groups
38
38
# These are default subnets with required configuration, check README.md for more details
@@ -42,7 +42,7 @@ module "vnet" {
42
42
# subnet name will be set as per Azure naming convention by defaut. expected value here is: <App or project name>
43
43
subnets = {
44
44
mgnt_subnet = {
45
- subnet_name = "management"
45
+ subnet_name = "snet- management"
46
46
subnet_address_prefix = ["10.1.2.0/24"]
47
47
delegation = {
48
48
name = "testdelegation"
@@ -51,6 +51,7 @@ module "vnet" {
51
51
actions = ["Microsoft.Network/virtualNetworks/subnets/join/action", "Microsoft.Network/virtualNetworks/subnets/prepareNetworkPolicies/action"]
52
52
}
53
53
}
54
+
54
55
nsg_inbound_rules = [
55
56
# [name, priority, direction, access, protocol, destination_port_range, source_address_prefix, destination_address_prefix]
56
57
# To use defaults, use "" without adding any values.
@@ -67,7 +68,7 @@ module "vnet" {
67
68
}
68
69
69
70
dmz_subnet = {
70
- subnet_name = "appgateway"
71
+ subnet_name = "snet- appgateway"
71
72
subnet_address_prefix = ["10.1.3.0/24"]
72
73
service_endpoints = ["Microsoft.Storage"]
73
74
@@ -132,7 +133,7 @@ This module supports enabling the service endpoint of your choosing under the vi
132
133
``` hcl
133
134
module "vnet" {
134
135
source = "kumarvna/vnet/azurerm"
135
- version = "2.0 .0"
136
+ version = "2.1 .0"
136
137
137
138
# .... omitted
138
139
@@ -160,7 +161,7 @@ This module supports enabling the service delegation of your choosing under the
160
161
``` hcl
161
162
module "vnet" {
162
163
source = "kumarvna/vnet/azurerm"
163
- version = "2.0 .0"
164
+ version = "2.1 .0"
164
165
165
166
# .... omitted
166
167
@@ -194,7 +195,7 @@ This module Enable or Disable network policies for the private link endpoint on
194
195
``` hcl
195
196
module "vnet" {
196
197
source = "kumarvna/vnet/azurerm"
197
- version = "2.0 .0"
198
+ version = "2.1 .0"
198
199
199
200
# .... omitted
200
201
@@ -224,7 +225,7 @@ This module Enable or Disable network policies for the private link service on t
224
225
``` hcl
225
226
module "vnet" {
226
227
source = "kumarvna/vnet/azurerm"
227
- version = "2.0 .0"
228
+ version = "2.1 .0"
228
229
229
230
# .... omitted
230
231
@@ -260,7 +261,7 @@ In the Source and Destination columns, `VirtualNetwork`, `AzureLoadBalancer`, an
260
261
``` hcl
261
262
module "vnet" {
262
263
source = "kumarvna/vnet/azurerm"
263
- version = "2.0 .0"
264
+ version = "2.1 .0"
264
265
265
266
# .... omitted
266
267
@@ -322,7 +323,7 @@ End Date of the Project|Date when this application, workload, or service is plan
322
323
``` hcl
323
324
module "vnet" {
324
325
source = "kumarvna/vnet/azurerm"
325
- version = "2.0 .0"
326
+ version = "2.1 .0"
326
327
327
328
# ... omitted
328
329
@@ -341,13 +342,13 @@ module "vnet" {
341
342
Name | Version
342
343
-----|--------
343
344
terraform | >= 0.13
344
- azurerm | ~ > 2.27
345
+ azurerm | >= 2.59.0
345
346
346
347
## Providers
347
348
348
349
| Name | Version |
349
350
| ------| ---------|
350
- azurerm | ~ > 2.27
351
+ azurerm | >= 2.59.0
351
352
352
353
## Inputs
353
354
0 commit comments