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
Copy file name to clipboardExpand all lines: articles/spring-apps/quickstart-access-within-vnet.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ ms.custom: devx-track-java
13
13
14
14
This article describes how to access your application in a virtual network using Azure Spring Apps Standard Consumption plan.
15
15
16
-
When you an Azure Container Apps environment in an existing virtual network, all the apps inside the environment can be accessed only within that virtual network. For more information see [Provide a virtual network to an internal Azure Container Apps environments](/azure/container-apps/vnet-custom-internal?tabs=bash&pivots=azure-portal).
16
+
When you create an Azure Container Apps Environment in an existing virtual network, all the apps inside the environment can be accessed only within that virtual network. In addition, when you create an instance of Azure Spring Apps inside the Azure Container Apps Environment, the applications in the Azure Spring Apps instance can be accessed only from the virtual network. For more information see [Provide a virtual network to an internal Azure Container Apps environments](/azure/container-apps/vnet-custom-internal?tabs=bash&pivots=azure-portal).
17
17
18
18
## Create a private DNS zone
19
19
@@ -40,7 +40,7 @@ az network private-dns zone create \
40
40
41
41
Create an A record that contains the name `<DNS Suffix>` and the static IP address of the Azure Container Apps Environment.
42
42
43
-
Get the static IP address for an Azure Container Apps Environment.
43
+
Use the following command to get the static IP address for an Azure Container Apps Environment.
44
44
45
45
```azurecli
46
46
az containerapp env show \
@@ -49,7 +49,7 @@ az containerapp env show \
49
49
--query 'properties.staticIp'
50
50
```
51
51
52
-
Get the A record:
52
+
Use the following command to get the A record:
53
53
54
54
```azurecli
55
55
az network private-dns record-set a add-record \
@@ -61,7 +61,7 @@ az network private-dns record-set a add-record \
61
61
62
62
## Link the virtual network
63
63
64
-
Create a virtual network link to link to the private DNS zone of the virtual network.
64
+
Use the following command to create a virtual network link to link to the private DNS zone of the virtual network.
65
65
66
66
```azurecli
67
67
az network private-dns link vnet create \
@@ -74,6 +74,6 @@ az network private-dns link vnet create \
74
74
75
75
## Access the application
76
76
77
-
Now you can access the spring application within your virtual network, using the url of the spring application.
77
+
Now you can access an application in an Azure Spring Apps instance within your virtual network, using the url of the application.
0 commit comments