Skip to content

Instantly share code, notes, and snippets.

@PlagueHO
Last active April 17, 2017 06:46
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 PlagueHO/45d281e3f6dc58107fbb6f982c27b4e8 to your computer and use it in GitHub Desktop.
Save PlagueHO/45d281e3f6dc58107fbb6f982c27b4e8 to your computer and use it in GitHub Desktop.
Add a new Azure Key Vault Secret
Set-AzureKeyVaultSecret -VaultName $keyVaultName -Name 'MyAdminPassword' `
-SecretValue (ConvertTo-SecureString -String 'P@ssword!1' -AsPlainText -Force)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment