Azure Recovery Services Protected File Share

This page shows how to write Terraform and Azure Resource Manager for Recovery Services Protected File Share and write them securely.

azurerm_backup_protected_file_share (Terraform)

The Protected File Share in Recovery Services can be configured in Terraform with the resource name azurerm_backup_protected_file_share. The following sections describe 7 examples of how to use the resource and its parameters.

Example Usage from GitHub

backup.tf#L29
resource "azurerm_backup_protected_file_share" "data" {
  resource_group_name       = azurerm_resource_group.rg.name
  recovery_vault_name       = azurerm_recovery_services_vault.vault.name
  source_storage_account_id = azurerm_backup_container_storage_account.protection-container.storage_account_id
  source_file_share_name    = azurerm_storage_share.data.name
  backup_policy_id          = azurerm_backup_policy_file_share.daily.id
file_share.tf#L12
resource "azurerm_backup_protected_file_share" "fs_backup" {
  for_each = try(var.settings.backups, null) != null ? toset(["enabled"]) : toset([])

  resource_group_name       = var.resource_group_name
  recovery_vault_name       = var.recovery_vault.name
  source_storage_account_id = var.storage_account_id
file_share.tf#L12
resource "azurerm_backup_protected_file_share" "fs_backup" {
  for_each = try(var.settings.backups, null) != null ? toset(["enabled"]) : toset([])

  resource_group_name       = var.resource_group_name
  recovery_vault_name       = var.recovery_vault.name
  source_storage_account_id = var.storage_account_id
main.tf#L7
resource "azurerm_backup_protected_file_share" "this" {
  backup_policy_id          = var.backup_policy_id
  recovery_vault_name       = var.recovery_vault_name
  resource_group_name       = var.resource_group_name
  source_file_share_name    = var.source_file_share_name
  source_storage_account_id = var.source_storage_account_id
main.tf#L7
resource "azurerm_backup_protected_file_share" "this" {
  backup_policy_id          = var.backup_policy_id
  recovery_vault_name       = var.recovery_vault_name
  resource_group_name       = var.resource_group_name
  source_file_share_name    = var.source_file_share_name
  source_storage_account_id = var.source_storage_account_id
file_share.tf#L12
resource "azurerm_backup_protected_file_share" "fs_backup" {
  for_each = try(var.settings.backups, null) != null ? toset(["enabled"]) : toset([])

  resource_group_name       = var.resource_group_name
  recovery_vault_name       = var.recovery_vault.name
  source_storage_account_id = var.storage_account_id
main.tf#L200
resource "azurerm_backup_protected_file_share" "share1" {
  resource_group_name       = var.RG_NAME
  recovery_vault_name       = azurerm_recovery_services_vault.VAULT.name
  source_storage_account_id = azurerm_backup_container_storage_account.protection-container.storage_account_id
  source_file_share_name    = azurerm_storage_share.share.name
  backup_policy_id          = azurerm_backup_policy_file_share.policy.id

Review your Terraform file for Azure best practices

Shisho Cloud, our free checker to make sure your Terraform configuration follows best practices, is available (beta).

Parameters

Explanation in Terraform Registry

Manages an Azure Backup Protected File Share to enable backups for file shares within an Azure Storage Account

Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems (Azure Resource Manager)

The vaults/backupFabrics/protectionContainers/protectedItems in Microsoft.RecoveryServices can be configured in Azure Resource Manager with the resource name Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems. The following sections describe how to use the resource and its parameters.

Example Usage from GitHub

An example could not be found in GitHub.

Frequently asked questions

What is Azure Recovery Services Protected File Share?

Azure Recovery Services Protected File Share is a resource for Recovery Services of Microsoft Azure. Settings can be wrote in Terraform.

Where can I find the example code for the Azure Recovery Services Protected File Share?

For Terraform, the ScottGuymer/terraform-azurerm-valheim, aztfmod/terraform-azurerm-caf and pkhuntia/aztfmod source code examples are useful. See the Terraform Example section for further details.