turbot/azure_compliance
Loading controls...

Control: 8.7 Ensure that Private Endpoints are Used for Azure Key Vault

Description

Private endpoints will secure network traffic from Azure Key Vault to the resources requesting secrets and keys.

Private endpoints will keep network requests to Azure Key Vault limited to the endpoints attached to the resources that are whitelisted to communicate with each other. Assigning the Key Vault to a network without an endpoint will allow other resources on that network to view all traffic from the Key Vault to its destination. In spite of the complexity in configuration, this is recommended for high security secrets.

Remediation

Please see the additional information about the requirements needed before starting this remediation procedure.

From Azure Portal

  1. From Azure Home open the Portal Menu in the top left.
  2. Select Key Vaults.
  3. Select a Key Vault to audit.
  4. Select Networking in the left column.
  5. Select Private endpoint connections from the top row.
  6. Select + Create.
  7. Select the subscription the Key Vault is within, and other desired configuration.
  8. Select Next.
  9. For resource type select Microsoft.KeyVault/vaults.
  10. Select the Key Vault to associate the Private Endpoint with.
  11. Select Next.
  12. In the Virtual Networking field, select the network to assign the Endpoint. 13.Select other configuration options as desired, including an existing or new application security group.
  13. Select Next.
  14. Select the private DNS the Private Endpoints will use.
  15. Select Next.
  16. Optionally add Tags.
  17. Select Next : Review + Create.
  18. Review the information and select Create. Follow the Audit Procedure to determine if it has successfully applied.
  19. Repeat steps 3-19 for each Key Vault.

From Azure CLI

  1. To create an end point, run the following command:
az network private-endpoint create --resource-group <resourceGroup --vnet- name <vnetName> --subnet <subnetName> --name <PrivateEndpointName> -- private-connection-resource-id "/subscriptions/<AZURE SUBSCRIPTION ID>/resourceGroups/<resourceGroup>/providers/Microsoft.KeyVault/vaults/<keyVa
ultName>" --group-ids vault --connection-name <privateLinkConnectionName> -- location <azureRegion> --manual-request
  1. To manually approve the end point request, run the following command:
az keyvault private-endpoint-connection approve --resource-group <resourceGroup> --vault-name <keyVaultName> –name <privateLinkName>
  1. Determine the Private Endpoint's IP address to connect the Key Vault to the Private DNS you have previously created:

  2. Look for the property networkInterfaces then id; the value must be placed in the variable <privateEndpointNIC> within step 6.

az network private-endpoint show -g <resourceGroupName> -n <privateEndpointName>
  1. Look for the property networkInterfaces then id; the value must be placed on <privateEndpointNIC> in step 6.
az network nic show --ids <privateEndpointName>
  1. Create a Private DNS record within the DNS Zone you created for the Private Endpoint:
az network private-dns record-set a add-record -g <resourcecGroupName> -z "privatelink.vaultcore.azure.net" -n <keyVaultName> -a <privateEndpointNIC>
  1. nslookup the private endpoint to determine if the DNS record is correct:
nslookup <keyVaultName>.vault.azure.net
nslookup <keyVaultName>.privatelink.vaultcore.azure.n

Default Value

By default, Private Endpoints are not enabled for any services within Azure.

Usage

Run the control in your terminal:

powerpipe control run azure_compliance.control.cis_v200_8_7

Snapshot and share results via Turbot Pipes:

powerpipe login
powerpipe control run azure_compliance.control.cis_v200_8_7 --share

SQL

This control uses a named query:

keyvault_vault_private_link_used

Tags