Created
January 3, 2018 20:09
-
-
Save aw230012/34aa15b3d06f79d508cd1e0960327762 to your computer and use it in GitHub Desktop.
ARM Template Parameters file for Azure Recovery Services Vault and Policy
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$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