Hi, Please help to crate and configure Azure Key with PowerShell, I have my own certificate, and CA (Certificate Authority) should be able revoke cert. in case of security emergency...
New-AzureRmKeyVault –VaultName "MainVault" –ResourceGroupName "DevResources" –Location "West US" ?????
// How to finish statement?
–Sku "Premium"
// OR
-EnabledForDiskEncryption
// ???
Add-AzureKeyVaultKey –VaultName “MainVault” –Name “MyString1” ????
// How to finish statement? HSM and Import Certificate or Software?
-Destination HSM -KeyFilePath ‘C:\MyCertificates\MyCertKey.pfx’ -KeyFilePassword ‘********’
// OR
-Destination Software –KeyOps @(‘decrypt’,’sign’)
Set-AzureKeyVaultSecret –VaultName “VT” –Name ‘NameString’ –SecretValue ‘***SomePaword***’
Greatly appreciated your help.