Skip to content

Instantly share code, notes, and snippets.

@sjwaight
Last active December 18, 2015 23:03
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 sjwaight/421483dbcd39c092633d to your computer and use it in GitHub Desktop.
Save sjwaight/421483dbcd39c092633d to your computer and use it in GitHub Desktop.
# Log into our Account.
Login-AzureRmAccount
# Create a new Resource Group
New-AzureRmResourceGroup -Name 'sw-sec-demo' -Location 'West US'
# Create new Key Vault instance - important to add "EnabledForDeployment"
New-AzureRmKeyVault -VaultName 'ProvisioningVault' -ResourceGroupName 'sw-sec-demo' -Location 'West US' -EnabledForTemplateDeployment
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment