diff --git a/quickstart/202-machine-learning-moderately-secure-existing-VNet/main.tf b/quickstart/202-machine-learning-moderately-secure-existing-VNet/main.tf index 8b59d811d..2bcbe7a8a 100644 --- a/quickstart/202-machine-learning-moderately-secure-existing-VNet/main.tf +++ b/quickstart/202-machine-learning-moderately-secure-existing-VNet/main.tf @@ -4,11 +4,11 @@ terraform { required_providers { azurerm = { source = "hashicorp/azurerm" - version = "=2.78.0" + version = ">=2.78.0" } azureml = { - source = "registry.terraform.io/Telemaco019/azureml" + source = "registry.terraform.io/orobix/azureml" } } } diff --git a/quickstart/202-machine-learning-moderately-secure-existing-VNet/variables.tf b/quickstart/202-machine-learning-moderately-secure-existing-VNet/variables.tf index 6abe1b18a..315b649a9 100644 --- a/quickstart/202-machine-learning-moderately-secure-existing-VNet/variables.tf +++ b/quickstart/202-machine-learning-moderately-secure-existing-VNet/variables.tf @@ -1,6 +1,7 @@ variable "name" { type = string description = "Name of the deployment" + default = "testdeploy" } variable "environment" { @@ -26,29 +27,33 @@ variable "image_build_compute_name" { variable "vnet_resource_group_name" { type = string description = "Name of the resource group for the existing VNet" + default = "testvnetrg" } variable "vnet_name" { type = string description = "Name of the existing VNet" + default = "testvnet" } variable "training_subnet_name" { type = string description = "Name of the existing training subnet" + default = "testtrainingsubnet" } variable "aks_subnet_name" { type = string description = "Name of the existing aks subnet" + default = "testakssubnet" } variable "ml_subnet_name" { type = string description = "Name of the existing ML workspace subnet" + default = "testmlsubnet" } - # Existing private DNS zones variables variable "privatelink_api_azureml_ms_resource_id" { type = string