Skip to content

Instantly share code, notes, and snippets.

View alexdrenea's full-sized avatar

Alex Drenea alexdrenea

View GitHub Profile
<#PSScriptInfo
.VERSION 1.0
.GUID e824788f-6b67-8b5d-ba3f-cf754aac6e49
.AUTHOR Alex Drenea
.COMPANYNAME Alex Drenea
@alexdrenea
alexdrenea / Scale-CosmosDb-Local.ps1
Last active February 4, 2021 01:58
Resize script for an Azure CosmosDB account of any type.
param(
[Parameter(Mandatory = $true)]
[string] $ResourceGroupName,
[Parameter(Mandatory = $true)]
[string] $AccountName,
[Parameter(Mandatory = $true)]
[string] $DatabaseName,
@alexdrenea
alexdrenea / webappsimple
Created April 6, 2018 15:01
simple WebApp ARM template
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"app_name": {
"type": "String"
},
"config_web_name": {
"defaultValue": "web",
"type": "String"