Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix 202-machine-learning-moderately-secure-existing-VNet #282

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
variable "name" {
type = string
description = "Name of the deployment"
default = "testdeploy"
}

variable "environment" {
Expand All @@ -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
Expand Down
Loading