Skip to content

Commit c4afabd

Browse files
committed
Changed default VNET address space
1 parent 0838640 commit c4afabd

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed

variables.tf

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -215,13 +215,13 @@ variable vnet_service_id {
215215
variable vnet_address_space {
216216
type = list(string)
217217
description = "(Optional) The address space that is used the virtual network. You can supply more than one address space. Changing this forces a new resource to be created."
218-
default = ["10.0.0.0/21"]
218+
default = ["172.16.0.0/18"]
219219
}
220220

221221
variable vnet_service_cidr {
222222
type = string
223223
description = "(Optional) The service cidr"
224-
default = "10.0.2.0/23"
224+
default = "172.16.32.0/20"
225225
}
226226

227227
variable vnet_dns_servers {
@@ -250,14 +250,9 @@ variable vnet_subnets {
250250
}))
251251
description = "(Optional) Creates the given subnets in the VNET. IMPORTANT: Services subnet should be the second Subnet in this list, as the network_profile is assuming this."
252252
default = [
253-
{
254-
name = "Ingresses"
255-
address_prefix = "10.0.0.0/23"
256-
security_group = true
257-
},
258253
{
259254
name = "Cluster"
260-
address_prefix = "10.0.4.0/22"
255+
address_prefix = "172.16.0.0/19"
261256
security_group = false
262257
}
263258
]

0 commit comments

Comments
 (0)