rackt09
rackt09

Reputation: 1

Azure Service Fabric backups (non-persistent data)

I have 3 applications deployed to Azure Service Fabric via ARM template. The only items that have been identified as needing to be backed up are some resources. They include a central blob storage, about 5 SQL databases, and the key vault. The cluster and apps can be redeployed right away via the template.

Searching for backup solutions, I'm seeing a lot of info on backups for services, but not for specific resources like I have here. Can anyone point me to the right direction/sample code on how to do this or is it even an option?

Upvotes: 0

Views: 77

Answers (1)

4c74356b41
4c74356b41

Reputation: 72181

Ok so, storage cannot be backed up using Azure services. You have to créate a program\script that will do that for you.

For the keyvault you can use this powershell cmdlet.

For the SQL there are a bunch of ways to do that, but perhaps you can settle with the built-in backup, which happens automatically and goes 7-35 days back (depending on your tier)

Upvotes: 1

Related Questions