-
-
Save darrenjrobinson/d74f68afcfac6ae29eaef4422adcd803 to your computer and use it in GitHub Desktop.
Add a certificate to the Azure Key Vault
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Get the certficate from the local machine that will be put into the Azure Key Vault | |
Set-AzureCertificate -Path C:\temp\Certificate\AADselfsignedcert.pfx -Name "AADAppCert" -Password ($pwd = Read-Host -AsSecureString) -VaultName $name -StorageAccountName $name | |
$AzVaultCert = Get-AzureCertificate -Name "AADAppCert" -VaultName $name |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment