Skip to content

Commit

Permalink
fix deprecated argument
Browse files Browse the repository at this point in the history
  • Loading branch information
lonegunmanb committed Sep 30, 2024
1 parent 97bb7ed commit cac713b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ terraform {
version = "0.0.5"
}
random = {
source = "hashicorp/random"
source = "hashicorp/random"
version = "3.6.0"
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ resource "azurerm_key_vault" "default" {
}

resource "azurerm_storage_account" "default" {
name = "st${var.name}${var.environment}"
location = azurerm_resource_group.default.location
resource_group_name = azurerm_resource_group.default.name
account_tier = "Standard"
account_replication_type = "GRS"
allow_blob_public_access = false
name = "st${var.name}${var.environment}"
location = azurerm_resource_group.default.location
resource_group_name = azurerm_resource_group.default.name
account_tier = "Standard"
account_replication_type = "GRS"
public_network_access_enabled = false

network_rules {
default_action = "Deny"
Expand Down Expand Up @@ -155,7 +155,7 @@ resource "azurerm_private_endpoint" "mlw_ple" {
subnet_id = data.azurerm_subnet.ml.id

private_dns_zone_group {
name = "private-dns-zone-group"
name = "private-dns-zone-group"
private_dns_zone_ids = [
var.privatelink_api_azureml_ms_resource_id,
var.privatelink_notebooks_azure_net_resource_id
Expand Down

0 comments on commit cac713b

Please sign in to comment.