You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -19,7 +18,7 @@ In this quickstart, you use an Azure Resource Manager template (ARM template) to
19
18
20
19
You can also complete this quickstart by using the [Azure portal](create-private-link-service-portal.md), [Azure PowerShell](create-private-link-service-powershell.md), or the [Azure CLI](create-private-link-service-cli.md).
21
20
22
-
If your environment meets the prerequisites and you're familiar with using ARM templates, select the **Deploy to Azure** button. The template will open in the Azure portal.
21
+
If your environment meets the prerequisites and you're familiar with using ARM templates, select the **Deploy to Azure** button. The template opens in the Azure portal.
23
22
24
23
[](https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2FAzure%2Fazure-quickstart-templates%2Fmaster%2Fquickstarts%2Fmicrosoft.network%2Fprivatelink-service%2Fazuredeploy.json)
25
24
@@ -38,12 +37,19 @@ The template used in this quickstart is from [Azure Quickstart Templates](https:
38
37
Multiple Azure resources are defined in the template:
39
38
40
39
-[**Microsoft.Network/virtualNetworks**](/azure/templates/microsoft.network/virtualnetworks): There's one virtual network for each virtual machine.
40
+
41
41
-[**Microsoft.Network/loadBalancers**](/azure/templates/microsoft.network/loadBalancers): The load balancer that exposes the virtual machines that host the service.
42
+
42
43
-[**Microsoft.Network/networkInterfaces**](/azure/templates/microsoft.network/networkinterfaces): There are two network interfaces, one for each virtual machine.
44
+
43
45
-[**Microsoft.Compute/virtualMachines**](/azure/templates/microsoft.compute/virtualmachines): There are two virtual machines, one that hosts the service and one that tests the connection to the private endpoint.
46
+
44
47
-[**Microsoft.Compute/virtualMachines/extensions**](/azure/templates/Microsoft.Compute/virtualMachines/extensions): The extension that installs a web server.
48
+
45
49
-[**Microsoft.Network/privateLinkServices**](/azure/templates/microsoft.network/privateLinkServices): The private link service to expose the service.
50
+
46
51
-[**Microsoft.Network/publicIpAddresses**](/azure/templates/microsoft.network/publicIpAddresses): There are two public IP addresses, one for each virtual machine.
52
+
47
53
-[**Microsoft.Network/privateendpoints**](/azure/templates/microsoft.network/privateendpoints): The private endpoint to access the service.
48
54
49
55
## Deploy the template
@@ -55,8 +61,14 @@ Here's how to deploy the ARM template to Azure:
55
61
[](https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2FAzure%2Fazure-quickstart-templates%2Fmaster%2Fquickstarts%2Fmicrosoft.network%2Fprivatelink-service%2Fazuredeploy.json)
56
62
57
63
2. Select or create your resource group.
58
-
3. Type the virtual machine administrator username and password.
59
-
4. Read the terms and conditions statement. If you agree, select **I agree to the terms and conditions stated above** > **Purchase**.
64
+
65
+
3. Enter the virtual machine administrator username and password.
66
+
67
+
4. Select **Review + create**.
68
+
69
+
5. Select **Create**.
70
+
71
+
The deployment takes a few minutes to complete.
60
72
61
73
## Validate the deployment
62
74
@@ -73,7 +85,7 @@ Connect to the VM _myConsumerVm{uniqueid}_ from the internet as follows:
73
85
74
86
3. Select **Download RDP File**. Azure creates a Remote Desktop Protocol (_.rdp_) file and downloads it to your computer.
75
87
76
-
4. Open the downloaded .rdp file.
88
+
4. Open the RDP file that was downloaded to your computer.
77
89
78
90
a. If prompted, select **Connect**.
79
91
@@ -93,12 +105,14 @@ Connect to the VM _myConsumerVm{uniqueid}_ from the internet as follows:
93
105
Here's how to connect to the http service from the VM by using the private endpoint.
94
106
95
107
1. Go to the Remote Desktop of _myConsumerVm{uniqueid}_.
108
+
96
109
2. Open a browser, and enter the private endpoint address: `http://10.0.0.5/`.
110
+
97
111
3. The default IIS page appears.
98
112
99
113
## Clean up resources
100
114
101
-
When you no longer need the resources that you created with the private link service, delete the resource group. This removes the private link service and all the related resources.
115
+
When you no longer need the resources that you created with the private link service, delete the resource group. This operation removes the private link service and all the related resources.
102
116
103
117
To delete the resource group, call the `Remove-AzResourceGroup` cmdlet:
104
118
@@ -108,7 +122,6 @@ Remove-AzResourceGroup -Name <your resource group name>
108
122
109
123
## Next steps
110
124
111
-
112
125
For more information on the services that support a private endpoint, see:
113
126
> [!div class="nextstepaction"]
114
127
> [Private Link availability](private-link-overview.md#availability)
0 commit comments