Skip to content

Commit

Permalink
Merge pull request #76 from nikuljain/patch-1
Browse files Browse the repository at this point in the history
Disable default cross tenant replication
  • Loading branch information
wcarty authored Jul 2, 2024
2 parents c4e1d64 + 3f6f615 commit 49a4609
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ resource "azurerm_storage_account" "sa" {
enable_https_traffic_only = var.enable_https_traffic_only
min_tls_version = var.min_tls_version
nfsv3_enabled = var.nfsv3_enabled
cross_tenant_replication_enabled = var.cross_tenant_replication_enabled
infrastructure_encryption_enabled = var.infrastructure_encryption_enabled
shared_access_key_enabled = var.shared_access_key_enabled
default_to_oauth_authentication = var.default_to_oauth_authentication
Expand Down
6 changes: 6 additions & 0 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,12 @@ variable "enable_static_website" {
default = false
}

variable "cross_tenant_replication_enabled" {
description = "Enable cross tenant replication when needed and valid reason. Possible values are `true` or `false`"
type = bool
default = false
}

variable "index_path" {
description = "path from your repo root to index.html"
type = string
Expand Down

0 comments on commit 49a4609

Please sign in to comment.