Skip to content

Commit

Permalink
fix: Support ARM >=3
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Renames parameter from ARM provider 2 to 3
  • Loading branch information
dploeger committed Apr 26, 2022
1 parent ee589aa commit 0150eed
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions main.tf
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
resource "azurerm_storage_account" "storage-account" {
name = "${lower(var.project)}${lower(var.stage)}stateacc"
resource_group_name = var.resource_group
location = var.location
account_kind = "StorageV2"
account_tier = "Standard"
account_replication_type = "ZRS"
enable_https_traffic_only = true
allow_blob_public_access = false
min_tls_version = "TLS1_2"
tags = var.tags
name = "${lower(var.project)}${lower(var.stage)}stateacc"
resource_group_name = var.resource_group
location = var.location
account_kind = "StorageV2"
account_tier = "Standard"
account_replication_type = "ZRS"
enable_https_traffic_only = true
allow_nested_items_to_be_public = false
min_tls_version = "TLS1_2"
tags = var.tags

blob_properties {
delete_retention_policy {
Expand Down

0 comments on commit 0150eed

Please sign in to comment.