Skip to content

Instantly share code, notes, and snippets.

@aw230012
Created January 3, 2018 20:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aw230012/34aa15b3d06f79d508cd1e0960327762 to your computer and use it in GitHub Desktop.
Save aw230012/34aa15b3d06f79d508cd1e0960327762 to your computer and use it in GitHub Desktop.
ARM Template Parameters file for Azure Recovery Services Vault and Policy
{
"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"vaultName": {
"value": "RSvault1"
},
"skuTier": {
"value": "Standard"
},
"policyName": {
"value": "VMBackupDaily"
},
"scheduleRunTimes": {
"value": [ "2018-01-26T05:30:00Z" ]
},
"dailyRetentionDurationCount": {
"value": 104
},
"scheduleRunTimeZone": {
"value": "Eastern Standard Time"
},
"daysOfTheWeek": {
"value": [ "Sunday", "Tuesday", "Thursday" ]
},
"weeklyRetentionDurationCount": {
"value": 104
},
"monthlyRetentionDurationCount": {
"value": 60
},
"monthsOfYear": {
"value": [ "January", "March", "August" ]
},
"yearlyRetentionDurationCount": {
"value": 10
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment