fix deprecated argument
This commit is contained in:
parent
97bb7ed715
commit
cac713bdbe
@ -12,7 +12,7 @@ terraform {
|
||||
version = "0.0.5"
|
||||
}
|
||||
random = {
|
||||
source = "hashicorp/random"
|
||||
source = "hashicorp/random"
|
||||
version = "3.6.0"
|
||||
}
|
||||
}
|
||||
|
@ -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"
|
||||
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user