Skip to content

Instantly share code, notes, and snippets.

@torgro
Created January 15, 2017 19:49
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 torgro/3b523686033bb02b1adc4546ee63ad5d to your computer and use it in GitHub Desktop.
Save torgro/3b523686033bb02b1adc4546ee63ad5d to your computer and use it in GitHub Desktop.
# Create a new empty template
New-ArmTemplate
# Creates a new variable named Region
New-ARMvariable -Name Region -Value "East US" | Add-ARMvariable
$newVar = @{
Name = "Region2"
Value = "North Europe"
}
# Creates a new variable named Region2
New-ARMvariable @newVar | Add-ARMvariable
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment