
Proposing update of repository as per suggestion of https://github.com/Azure/terraform/issues/101. Otherwise, the code as is cannot be initialized. Thank you!
26 lines
436 B
HCL
26 lines
436 B
HCL
terraform {
|
|
required_version = ">=1.0"
|
|
|
|
required_providers {
|
|
azurerm = {
|
|
source = "hashicorp/azurerm"
|
|
version = "=3.0.2"
|
|
}
|
|
|
|
azureml = {
|
|
source = "registry.terraform.io/orobix/azureml"
|
|
}
|
|
}
|
|
}
|
|
|
|
provider "azurerm" {
|
|
features {}
|
|
}
|
|
|
|
data "azurerm_client_config" "current" {}
|
|
|
|
resource "azurerm_resource_group" "default" {
|
|
name = "rg-${var.name}-${var.environment}"
|
|
location = var.location
|
|
}
|