From 0b18cf4739b2c979e5951de481630955856e0647 Mon Sep 17 00:00:00 2001 From: ryhud Date: Fri, 24 Sep 2021 14:33:46 -0400 Subject: [PATCH] updating aks subnetvar default to larger cidr --- .../201-machine-learning-moderately-secure/variables.tf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/quickstart/201-machine-learning-moderately-secure/variables.tf b/quickstart/201-machine-learning-moderately-secure/variables.tf index bc226931..6a67c802 100644 --- a/quickstart/201-machine-learning-moderately-secure/variables.tf +++ b/quickstart/201-machine-learning-moderately-secure/variables.tf @@ -24,19 +24,19 @@ variable "vnet_address_space" { variable "training_subnet_address_space" { type = list(string) description = "Address space of the training subnet" - default = ["10.0.0.0/24"] + default = ["10.0.1.0/24"] } variable "aks_subnet_address_space" { type = list(string) description = "Address space of the aks subnet" - default = ["10.0.1.0/24"] + default = ["10.0.2.0/23"] } variable "ml_subnet_address_space" { type = list(string) description = "Address space of the ML workspace subnet" - default = ["10.0.2.0/24"] + default = ["10.0.0.0/24"] } variable "image_build_compute_name" {