Skip to content

Commit 4f8b529

Browse files
authored
Merge pull request #107935 from ShaneBala-keyvault/patch-2
private-link-service.md
2 parents 1f8b221 + 266cfb5 commit 4f8b529

File tree

1 file changed

+11
-7
lines changed

1 file changed

+11
-7
lines changed

articles/key-vault/private-link-service.md

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ Azure Private Link Service enables you to access Azure Services (for example, Az
1515

1616
An Azure Private Endpoint is a network interface that connects you privately and securely to a service powered by Azure Private Link. The private endpoint uses a private IP address from your VNet, effectively bringing the service into your VNet. All traffic to the service can be routed through the private endpoint, so no gateways, NAT devices, ExpressRoute or VPN connections, or public IP addresses are needed. Traffic between your virtual network and the service traverses over the Microsoft backbone network, eliminating exposure from the public Internet. You can connect to an instance of an Azure resource, giving you the highest level of granularity in access control.
1717

18-
For more information, see [What is Azure Private Link (Preview)?](../private-link/private-link-overview.md)
18+
For more information, see [What is Azure Private Link?](../private-link/private-link-overview.md)
1919

2020
## Prerequisites
2121

22-
To integrate a key vault with Azure Private Link (Preview), you will need the following:
22+
To integrate a key vault with Azure Private Link, you will need the following:
2323

2424
- A key vault.
2525
- An Azure virtual network.
@@ -42,7 +42,7 @@ You can create a new key Vault by following the steps in [Set and retrieve a sec
4242

4343
After configuring the key vault basics, select the Networking tab and follow these steps:
4444

45-
1. Select the Private Endpoint (preview) radio button in the Networking tab.
45+
1. Select the Private Endpoint radio button in the Networking tab.
4646
1. Click the "+ Add" Button to add a private endpoint.
4747

4848
![Image](./media/private-link-service-1.png)
@@ -66,7 +66,7 @@ If you already have a key vault, you can create a private link connection by fol
6666
1. In the search bar, type in "key vaults"
6767
1. Select the key vault from the list to which you want to add a private endpoint.
6868
1. Select the "Networking" tab under Settings
69-
1. Select the Private endpoint connections (preview) tab at the top of the page
69+
1. Select the Private endpoint connections tab at the top of the page
7070
1. Select the "+ Private Endpoint" button at the top of the page.
7171

7272
![Image](./media/private-link-service-3.png)
@@ -99,6 +99,10 @@ az provider register -n Microsoft.KeyVault
9999
```console
100100
az keyvault create --name {KEY VAULT NAME} --resource-group {RG} --location {AZURE REGION}
101101
```
102+
### Turn on Key Vault Firewall
103+
```console
104+
az keyvault update --name {KEY VAULT NAME} --resource-group {RG} --location {AZURE REGION} --default-action deny
105+
```
102106
### Create a Virtual Network
103107
```console
104108
az network vnet create --resource-group {RG} --name {vNet NAME} --location {AZURE REGION}
@@ -218,9 +222,9 @@ Aliases: <your-key-vault-name>.vault.azure.net
218222

219223
## Limitations and Design Considerations
220224

221-
**Pricing**: For pricing information, see [Azure Private Link (preview) pricing](https://azure.microsoft.com/pricing/details/private-link/).
225+
**Pricing**: For pricing information, see [Azure Private Link pricing](https://azure.microsoft.com/pricing/details/private-link/).
222226

223-
**Limitations**: Private Endpoint for Azure Key Vault is in public preview. This feature is available in all Azure public regions.
227+
**Limitations**: Private Endpoint for Azure Key Vault is only available in Azure public regions.
224228

225229
**Maximum Number of Private Endpoints per Key Vault**: 64.
226230

@@ -230,5 +234,5 @@ For more, see [Azure Private Link service: Limitations](../private-link/private-
230234

231235
## Next Steps
232236

233-
- Learn more about [Azure Private Link (Preview)](../private-link/private-link-service-overview.md)
237+
- Learn more about [Azure Private Link](../private-link/private-link-service-overview.md)
234238
- Learn more about [Azure Key Vault](key-vault-overview.md)

0 commit comments

Comments
 (0)