Skip to content

Instantly share code, notes, and snippets.

View colddaemon1's full-sized avatar
๐Ÿ˜ƒ

Nick Little colddaemon1

๐Ÿ˜ƒ
View GitHub Profile
@colddaemon1
colddaemon1 / rsv_vault_create.json
Created October 31, 2018 22:59
ARM recovery services vault creation
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"vaultName": {
"type": "string",
"metadata": {
"description": "Name of the Vault"
}
},
@colddaemon1
colddaemon1 / git_clone.sh
Last active October 31, 2018 22:55
git clone
# In the directory you want to make the local GIT repository:
sudo mkdir arm_repo
cd arm_repo
git clone https://youruser@dev.azure.com/yourname/ARM_/_git/ARM_
# Edit you JSON ARM templates in VSCode and push to your remote repository. (assuming files don't exist):
git add .
git commit -m "adding new ARM templates"
git push