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
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
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
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
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
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
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
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
Parameters
-
backup_policy_id
required - string -
id
optional computed - string -
recovery_vault_name
required - string -
resource_group_name
required - string -
source_file_share_name
required - string -
source_storage_account_id
required - string -
timeouts
single block
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.