adding AML 301
This commit is contained in:
28
quickstart/301-machine-learning-hub-spoke-secure/main.tf
Normal file
28
quickstart/301-machine-learning-hub-spoke-secure/main.tf
Normal file
@ -0,0 +1,28 @@
|
||||
terraform {
|
||||
required_version = ">=0.15.0"
|
||||
|
||||
required_providers {
|
||||
azurerm = {
|
||||
source = "hashicorp/azurerm"
|
||||
version = "=2.79.1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
provider "azurerm" {
|
||||
features {}
|
||||
}
|
||||
|
||||
data "azurerm_client_config" "current" {}
|
||||
|
||||
resource "azurerm_resource_group" "default" {
|
||||
name = "rg-${var.name}-${var.environment}"
|
||||
location = var.location
|
||||
}
|
||||
|
||||
#Hub Resource Group
|
||||
resource "azurerm_resource_group" "hub_rg" {
|
||||
name = "rg-hub-${var.name}-${var.environment}"
|
||||
location = var.location
|
||||
|
||||
}
|
Reference in New Issue
Block a user