harrycruz 150b11b528
Update main.tf
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!
2022-11-09 22:29:14 +01:00

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
}