diff --git a/main.tf b/main.tf index 478aa68..3f7d01c 100644 --- a/main.tf +++ b/main.tf @@ -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 diff --git a/variables.tf b/variables.tf index 5b599ea..dfb3fe2 100644 --- a/variables.tf +++ b/variables.tf @@ -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