Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions modules/high_availability_existing_vnet/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -316,6 +316,7 @@ resource "azurerm_storage_account" "vm-boot-diagnostics-storage" {
location = module.common.resource_group_location
account_tier = module.common.storage_account_tier
account_replication_type = module.common.account_replication_type
account_kind = "StorageV2"
min_tls_version = "TLS1_2"
network_rules {
default_action = var.add_storage_account_ip_rules ? "Deny" : "Allow"
Expand Down
1 change: 1 addition & 0 deletions modules/high_availability_new_vnet/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -326,6 +326,7 @@ resource "azurerm_storage_account" "vm-boot-diagnostics-storage" {
location = module.common.resource_group_location
account_tier = module.common.storage_account_tier
account_replication_type = module.common.account_replication_type
account_kind = "StorageV2"
min_tls_version = "TLS1_2"
network_rules {
default_action = var.add_storage_account_ip_rules ? "Deny" : "Allow"
Expand Down
2 changes: 1 addition & 1 deletion modules/management_existing_vnet/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ resource "azurerm_storage_account" "vm-boot-diagnostics-storage" {
location = module.common.resource_group_location
account_tier = module.common.storage_account_tier
account_replication_type = module.common.account_replication_type
account_kind = "Storage"
account_kind = "StorageV2"
min_tls_version = "TLS1_2"
network_rules {
default_action = var.add_storage_account_ip_rules ? "Deny" : "Allow"
Expand Down
2 changes: 1 addition & 1 deletion modules/management_new_vnet/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ resource "azurerm_storage_account" "vm-boot-diagnostics-storage" {
location = module.common.resource_group_location
account_tier = module.common.storage_account_tier
account_replication_type = module.common.account_replication_type
account_kind = "Storage"
account_kind = "StorageV2"
min_tls_version = "TLS1_2"
network_rules {
default_action = var.add_storage_account_ip_rules ? "Deny" : "Allow"
Expand Down
2 changes: 1 addition & 1 deletion modules/mds_existing_vnet/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ resource "azurerm_storage_account" "vm-boot-diagnostics-storage" {
location = module.common.resource_group_location
account_tier = module.common.storage_account_tier
account_replication_type = module.common.account_replication_type
account_kind = "Storage"
account_kind = "StorageV2"
min_tls_version = "TLS1_2"
network_rules {
default_action = var.add_storage_account_ip_rules ? "Deny" : "Allow"
Expand Down
2 changes: 1 addition & 1 deletion modules/mds_new_vnet/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ resource "azurerm_storage_account" "vm-boot-diagnostics-storage" {
location = module.common.resource_group_location
account_tier = module.common.storage_account_tier
account_replication_type = module.common.account_replication_type
account_kind = "Storage"
account_kind = "StorageV2"
min_tls_version = "TLS1_2"
network_rules {
default_action = var.add_storage_account_ip_rules ? "Deny" : "Allow"
Expand Down
2 changes: 1 addition & 1 deletion modules/single_gateway_existing_vnet/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ resource "azurerm_storage_account" "vm-boot-diagnostics-storage" {
location = module.common.resource_group_location
account_tier = module.common.storage_account_tier
account_replication_type = module.common.account_replication_type
account_kind = "Storage"
account_kind = "StorageV2"
min_tls_version = "TLS1_2"
network_rules {
default_action = var.add_storage_account_ip_rules ? "Deny" : "Allow"
Expand Down
2 changes: 1 addition & 1 deletion modules/single_gateway_new_vnet/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ resource "azurerm_storage_account" "vm-boot-diagnostics-storage" {
location = module.common.resource_group_location
account_tier = module.common.storage_account_tier
account_replication_type = module.common.account_replication_type
account_kind = "Storage"
account_kind = "StorageV2"
min_tls_version = "TLS1_2"
network_rules {
default_action = var.add_storage_account_ip_rules ? "Deny" : "Allow"
Expand Down
1 change: 1 addition & 0 deletions modules/vmss_existing_vnet/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,7 @@ resource "azurerm_storage_account" "vm-boot-diagnostics-storage" {
location = module.common.resource_group_location
account_tier = module.common.storage_account_tier
account_replication_type = module.common.account_replication_type
account_kind = "StorageV2"
min_tls_version = "TLS1_2"
network_rules {
default_action = var.add_storage_account_ip_rules ? "Deny" : "Allow"
Expand Down
1 change: 1 addition & 0 deletions modules/vmss_new_vnet/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,7 @@ resource "azurerm_storage_account" "vm-boot-diagnostics-storage" {
location = module.common.resource_group_location
account_tier = module.common.storage_account_tier
account_replication_type = module.common.account_replication_type
account_kind = "StorageV2"
min_tls_version = "TLS1_2"
network_rules {
default_action = var.add_storage_account_ip_rules ? "Deny" : "Allow"
Expand Down