Skip to content

Commit

Permalink
add new default options to newest provider (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelamattes authored May 9, 2022
1 parent 354b437 commit 99a1cde
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ resource "azurerm_storage_account" "storage_account" {
account_kind = local.storage_account[each.key].account_kind
account_tier = local.storage_account[each.key].account_tier
account_replication_type = local.storage_account[each.key].account_replication_type
cross_tenant_replication_enabled = local.storage_account[each.key].cross_tenant_replication_enabled
access_tier = local.storage_account[each.key].access_tier
edge_zone = local.storage_account[each.key].edge_zone
enable_https_traffic_only = local.storage_account[each.key].enable_https_traffic_only
Expand Down
1 change: 1 addition & 0 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ locals {
account_kind = "StorageV2"
account_tier = "Standard"
account_replication_type = "ZRS"
cross_tenant_replication_enabled = false
access_tier = "Hot"
edge_zone = null
enable_https_traffic_only = true
Expand Down
4 changes: 2 additions & 2 deletions versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ terraform {
required_providers {
azurerm = {
source = "registry.terraform.io/hashicorp/azurerm"
version = ">=3.2"
version = ">=3.5"
}
}
required_version = ">=1.0"
required_version = ">=1.1"
}

0 comments on commit 99a1cde

Please sign in to comment.