You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request
Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request
If you are interested in working on this issue or have submitted a pull request, please leave a comment
Description
Currently azure files in recovery service vault is in preview and should soon be in GA. Currently terraform does not support this.
New or Affected Resource(s)
azurerm_recovery_services_vault
azurerm_storage_share
Potential Terraform Configuration
# Copy-paste your Terraform configurations here - for large Terraform configs,# please use a service like Dropbox and share a link to the ZIP file. For# security, you can also encrypt the files using our GPG public key.resource"azurerm_recovery_services_protection_policy_file_share""" {
name="fs-recovery-vault-policy"resource_group_name="${azurerm_resource_group.example.name}"recovery_vault_name="${azurerm_recovery_services_vault.example.name}"timezone="UTC"backup {
time="23:00"
}
retention_range=10
}
resource"azurerm_recovery_services_protected_file_share""XXXX" {
resource_group_name="${azurerm_resource_group.example.name}"recovery_vault_name="${azurerm_recovery_services_vault.example.name}"source_storage_account_id="${azurerm_virtual_machine.example.id}"source_file_share_name="share1"backup_policy_id="${azurerm_recovery_services_protection_policy_vm.example.id}"
}
References
The text was updated successfully, but these errors were encountered:
Addresses #5026
An additional resource beyond the suggested resources in the associated issue was required in order to first register a storage account with a recovery services vault. I've also used an updated naming scheme based on my proposal in #5089 and associated PR #5170 in order to better distinguish Azure Backup resources from Site Recovery (DR) resources. That PR does not technically block this one, but it would make the naming more consistent with the existing Azure Backup resources.
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues.
If you feel this issue should be reopened, we encourage creating a new issue linking back to this one for added context. If you feel I made an error 🤖 🙉 , please reach out to my human friends 👉 [email protected]. Thanks!
ghost
locked and limited conversation to collaborators
Mar 28, 2020
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Community Note
Description
Currently azure files in recovery service vault is in preview and should soon be in GA. Currently terraform does not support this.
New or Affected Resource(s)
Potential Terraform Configuration
References
The text was updated successfully, but these errors were encountered: