Added two Azure ML quickstart templates

This commit is contained in:
Dennis Eikelenboom
2021-08-05 14:52:54 -07:00
parent cefacf9966
commit 5e52a3836b
7 changed files with 317 additions and 0 deletions

View File

@ -0,0 +1,11 @@
provider "azurerm" {
version = "~>2.0"
features {}
}
data "azurerm_client_config" "current" {}
resource "azurerm_resource_group" "default" {
name = "${var.name}-${var.environment}-rgp"
location = "${var.location}"
}