Skip to content

Commit 3d93772

Browse files
brhamilton529KarlErickson
authored andcommitted
acrolinx and placeholders
1 parent 2c92446 commit 3d93772

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

articles/spring-apps/quickstart-access-within-vnet.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ms.custom: devx-track-java
1313

1414
This article describes how to access your application in a virtual network using Azure Spring Apps Standard Consumption plan.
1515

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).
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).
1717

1818
## Create a private DNS zone
1919

@@ -23,17 +23,17 @@ Use the following command to get the default domain of Azure Container Apps Envi
2323

2424
```azurecli
2525
az containerapp env show \
26-
--name <manage environment name> \
27-
--resource-group <resource group> \
26+
--name <Azure-Container-Apps-environment-name> \
27+
--resource-group <resource-group-name> \
2828
--query 'properties.defaultDomain'
2929
```
3030

3131
Use the following command to create a Private DNS Zone for applications in the virtual network.
3232

3333
```azurecli
3434
az network private-dns zone create \
35-
--resource-group <resource group> \
36-
--name <private dns zone name>
35+
--resource-group <resource-group-name> \
36+
--name <private-dns-zone-name>
3737
```
3838

3939
## Create an A record
@@ -44,31 +44,31 @@ Use the following command to get the static IP address for an Azure Container Ap
4444

4545
```azurecli
4646
az containerapp env show \
47-
--name <manage environment name> \
48-
--resource-group <resource group> \
47+
--name <Azure-Container-Apps-environment-name> \
48+
--resource-group <resource-group-name> \
4949
--query 'properties.staticIp'
5050
```
5151

5252
Use the following command to get the A record:
5353

5454
```azurecli
5555
az network private-dns record-set a add-record \
56-
--resource-group <resource group> \
57-
--zone-name <private dns zone name> \
56+
--resource-group <resource-group-name> \
57+
--zone-name <private-dns-zone-name> \
5858
--record-set-name '*' \
59-
--ipv4-address <static ip>
59+
--ipv4-address <static-ip>
6060
```
6161

6262
## Link the virtual network
6363

64-
Use the following command to 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 the private DNS zone of the virtual network.
6565

6666
```azurecli
6767
az network private-dns link vnet create \
68-
--resource-group <resource group> \
69-
--name <link name> \
70-
--zone-name <private dns zone name> \
71-
--virtual-network <name of the virtual network> \
68+
--resource-group <resource-group-name> \
69+
--name <link-name> \
70+
--zone-name <private-dns-zone-name> \
71+
--virtual-network <virtual-network-name> \
7272
--registration-enabled false
7373
```
7474

0 commit comments

Comments
 (0)