It is possible to use Microsoft Azure Key Vault to encrypt each tenant in your Orchestrator instance with its own unique key. The Key Vault is used by Orchestrator to store the keys in a safe manner, as well as to manage them, adding a better segregation of your data between tenants.
Orchestrator can be installed in both Microsoft Azure or on-premise in order to take advantage of this feature, yet the latter requires you to connect the Orchestrator instance to the internet and Azure Key Vault.
Prerequisites:
- Your own Microsoft Azure Key Vault
 - A clean Orchestrator installation
 - A valid SSL certificate for your Orchestrator instance:
- Private Key Certificate - It needs to be uploaded in App Services > SSL Settings > Private Key Certificates and it needs to be imported on the machine(s) Orchestrator is installed on (the domain where the certificate was generated and installed has to match the domain of the user you run Orchestrator under)
 - Public Key Certificate - It needs to be uploaded in App registration > Settings > Keys > Public Keys
 
 
Important!
Encryption keys must not be edited on the Azure Key Vault side by users, such as enabling/disabling secrets or editing the activation date and expiration date. If a secret is disabled, data stored by Orchestrator for that tenant is no longer decrypted.
To set up the connection between your Azure Key Vault and Orchestrator instances, follow these steps:
- Open the 
web.configfile of your Orchestrator instance. - Make sure that the 
Database.EnableAutomaticMigrationsparameter is set totrue. Otherwise, all subsequent changes to theweb.configfile do not take effect. - Set 
EncryptionKeyPerTenant.Enabledtotrue. - Set 
EncryptionKeyPerTenant.KeyProvidertoAzureKeyVault. - In Azure, in App Registrations, search for your Orchestrator instance and select it.
 - Copy the Application ID and provide it as a value for the 
Azure.KeyVault.ClientIdweb.configparameter, in thesecureAppSettingssection. Example:<add key="Azure.KeyVault.ClientId" value="ae11aa1a-1234-1234-a123-a12a12aaa1aa" />. 
- a. Look for your private certificate for your Orchestrator instance in App Services > SSL Settings > Private Certificates. (If your Orchestrator is on-premise, look for the certificate locally.)
b. Look for your public certificate for your Orchestrator instance in App registration > Settings > Keys > Public Keys. 
- Copy the Thumbprint and provide it as a value for the 
Azure.KeyVault.CertificateThumbprintparameter, in thesecureAppSettingssection. Example:<add key="Azure.KeyVault.CertificateThumbprint" value="1234123412341234123412341234124312341234" />. - In Azure, search for your key vault and select it. Information pertaining to it is displayed in a separate panel.
 - Copy the DNS Name and provide it as a value for the 
Azure.KeyVault.VaultAddressparameter, in thesecureAppSettingssection. Example:<add key="Azure.KeyVault.VaultAddress" value="https://CustomVaultName.vault.azure.net/" />. - Give all key, secret, and certificate permissions to Orchestrator in your vault by adding the principal (registered app) it belongs to in the Access policies section.
 
 Updated 2 years ago

