Skip to content

Commit c3740a7

Browse files
acrolix updates
1 parent 60fefcd commit c3740a7

File tree

3 files changed

+27
-27
lines changed

3 files changed

+27
-27
lines changed

articles/container-apps/how-to-integrate-with-azure-front-door.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -74,13 +74,13 @@ Create a resource group to organize the services related to your container app d
7474
<!-- Deploy the container app -->
7575
[!INCLUDE [container-apps-create-portal-deploy.md](../../includes/container-apps-create-portal-deploy.md)]
7676

77-
1. When you browse to the container app endpoint, you see the following message:
77+
3. When you browse to the container app endpoint, you see the following message:
7878

7979
```
8080
The public network access on this managed environment is disabled. To connect to this managed environment, please use the Private Endpoint from inside your virtual network. To learn more https://aka.ms/PrivateEndpointTroubleshooting.
8181
```
8282
83-
Instead, you use an AFD endpoint to access your container app.
83+
Instead, you use an Azure Front Door endpoint to access your container app.
8484
8585
## Create an Azure Front Door profile and endpoint
8686
@@ -95,7 +95,7 @@ Create a resource group to organize the services related to your container app d
9595
|--|--|
9696
| Resource group | Select **my-container-apps**. |
9797
| Name | Enter **my-afd-profile**. |
98-
| Tier | Select **Premium**. Private link is not supported for origins in an AFD profile on the Standard tier. |
98+
| Tier | Select **Premium**. Private link isn't supported for origins for Azure Front Door on the Standard tier. |
9999
| Endpoint name | Enter **my-afd-endpoint**. |
100100
| Origin type | Select **Container Apps**. |
101101
| Origin host name | Enter the hostname of your container app. Your hostname looks like the following example: `my-container-app.orangeplant-77e5875b.centralus.azurecontainerapps.io`. |
@@ -127,11 +127,11 @@ Create a resource group to organize the services related to your container app d
127127
1. In the *Private endpoint connections* page, approve each private endpoint connection request with the description `AFD Private Link Request`.
128128
129129
> [!NOTE]
130-
> Azure Front Door might create multiple private endpoint connection requests. This is a known issue.
130+
> Azure Front Door has a known issue where it might create multiple private endpoint connection requests.
131131
132132
## Access your container app from Azure Front Door
133133
134-
Browse to the AFD endpoint hostname you recorded previously. You see the output for the quickstart container app image. It takes a few minutes for your AFD profile to be deployed globally, so if you do not see the expected output at first, wait a few minutes and then refresh.
134+
Browse to the Azure Front Door endpoint hostname you recorded previously. You see the output for the quickstart container app image. Global deployment could take a few minutes to deploy, so if you don't see the expected output, wait a few minutes and then refresh.
135135
136136
## Clean up resources
137137
@@ -211,7 +211,7 @@ az group create \
211211
--location $LOCATION
212212
```
213213
214-
1. Retrieve the environment ID. You use this to configure the environment.
214+
1. Retrieve the environment ID. You use this ID to configure the environment.
215215
216216
```azurecli
217217
ENVIRONMENT_ID=$(az containerapp env show \
@@ -265,7 +265,7 @@ az group create \
265265
az provider register --namespace Microsoft.Cdn
266266
```
267267

268-
1. Create an AFD profile. Private link is not supported for origins in an AFD profile with SKU `Standard_AzureFrontDoor`.
268+
1. Create an AFD profile. Private link isn't supported for origins in an AFD profile with SKU `Standard_AzureFrontDoor`.
269269

270270
```azurecli
271271
az afd profile create \
@@ -342,23 +342,23 @@ az afd origin create \
342342
/subscriptions/<SUBSCRIPTION_ID>/resourceGroups/<RESOURCE_GROUP>/providers/Microsoft.App/managedEnvironments/my-environment/privateEndpointConnections/<PRIVATE_ENDPOINT_CONNECTION_ID>
343343
```
344344
345-
Don't confuse this with the private endpoint ID, which looks like the following.
345+
Don't confuse this ID with the private endpoint ID, which looks like the following.
346346
347347
```
348348
/subscriptions/<SUBSCRIPTION_ID>/resourceGroups/eafd-Prod-centralus/providers/Microsoft.Network/privateEndpoints/<PRIVATE_ENDPOINT_ID>
349349
```
350350
351351
## Approve the private endpoint connection
352352
353-
Run the following command to approve the connection. Replace the \<PLACEHOLDER\> with the private endpoint connection resource ID you recorded in the previous section.
353+
To approve the connection, run the following command. Replace the \<PLACEHOLDER\> with the private endpoint connection resource ID you recorded in the previous section.
354354
355355
```azurecli
356356
az network private-endpoint-connection approve --id <PRIVATE_ENDPOINT_CONNECTION_RESOURCE_ID>
357357
```
358358

359359
## Add a route
360360

361-
Run the following command to map the endpoint you created earlier to the origin group. Private endpoints on Azure Container Apps only support inbound HTTP traffic. TCP traffic is not supported.
361+
Run the following command to map the endpoint you created earlier to the origin group. Private endpoints on Azure Container Apps only support inbound HTTP traffic. TCP traffic isn't supported.
362362

363363
```azurecli
364364
az afd route create \
@@ -394,14 +394,14 @@ az afd route create \
394394
395395
1. Browse to the hostname. You see the output for the quickstart container app image.
396396
397-
It takes a few minutes for your AFD profile to be deployed globally, so if you do not see the expected output at first, wait a few minutes and then refresh.
397+
If you don't see the expected output at first, wait a few minutes and then refresh.
398398
399399
## Clean up resources
400400
401-
If you're not going to continue to use this application, you can remove the **my-container-apps** resource group. This deletes the Azure Container Apps instance and all associated services. It also deletes the resource group that the Container Apps service automatically created and which contains the custom network components.
401+
If you're not going to continue to use this application, you can remove the **my-container-apps** resource group. This action deletes the Azure Container Apps instance and all associated services. It also deletes the resource group that the Container Apps service automatically created and which contains the custom network components.
402402
403403
> [!CAUTION]
404-
> The following command deletes the specified resource group and all resources contained within it. If resources outside the scope of this guide exist in the specified resource group, they will also be deleted.
404+
> The following command deletes the specified resource group and all resources contained within it. If resources outside the scope of this guide exist in the specified resource group, they'll also be deleted.
405405
406406
```azurecli
407407
az group delete --name $RESOURCE_GROUP

articles/container-apps/how-to-use-private-endpoint.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ In this article, you learn how to use a private endpoint to securely access your
1717

1818
A private endpoint uses a private IP address from your virtual network (VNet). This endpoint connects you privately and securely to a service powered by [Azure Private Link](/azure/private-link/private-link-overview).
1919

20-
Private endpoints on Azure Container Apps only support inbound HTTP traffic. TCP traffic is not supported.
20+
Private endpoints on Azure Container Apps only support inbound HTTP traffic. TCP traffic isn't supported.
2121

2222
::: zone pivot="azure-portal"
2323

@@ -58,7 +58,7 @@ Begin by signing in to the [Azure portal](https://portal.azure.com).
5858
1. Set *Public Network Access* to **Disable: Block all incoming traffic from the public internet.** By default, public network access is enabled, which means private endpoints are disabled.
5959

6060
1. Leave **Use your own virtual network** set to **No**.
61-
You can use an existing VNet, but private endpoints are only supported by workload profiles environments, which require a subnet with a minimum CIDR range of `/27` or larger. To learn more about subnet sizing, see the [networking architecture overview](./networking.md#subnet).
61+
You can use an existing VNet, but private endpoints are only supported in workload profiles environments, which require a subnet with a minimum CIDR range of `/27` or larger. To learn more about subnet sizing, see the [networking architecture overview](./networking.md#subnet).
6262

6363
1. Set *Enable private endpoints* to **Yes**.
6464

@@ -83,7 +83,7 @@ Begin by signing in to the [Azure portal](https://portal.azure.com).
8383
<!-- Deploy the container app -->
8484
[!INCLUDE [container-apps-create-portal-deploy.md](../../includes/container-apps-create-portal-deploy.md)]
8585

86-
1. When you browse to the container app endpoint, you see the following message:
86+
4. When you browse to the container app endpoint, you see the following message:
8787

8888
```
8989
The public network access on this managed environment is disabled. To connect to this managed environment, please use the Private Endpoint from inside your virtual network. To learn more https://aka.ms/PrivateEndpointTroubleshooting.
@@ -144,7 +144,7 @@ az group create \
144144

145145
## Create a virtual network
146146

147-
1. Create an Azure virtual network (VNet). You can use an existing VNet, but private endpoints are only supported by workload profiles environments, which require a subnet with a minimum CIDR range of `/27` or larger. To learn more about subnet sizing, see the [networking architecture overview](./networking.md#subnet).
147+
1. Create an Azure virtual network (VNet). You can use an existing VNet, but private endpoints are only supported in workload profiles environments, which require a subnet with a minimum CIDR range of `/27` or larger. To learn more about subnet sizing, see the [networking architecture overview](./networking.md#subnet).
148148

149149
```azurecli
150150
az network vnet create \
@@ -164,7 +164,7 @@ az group create \
164164
--address-prefixes 10.0.0.0/21
165165
```
166166
167-
1. Retrieve the subnet ID. You use this to create the private endpoint.
167+
1. Retrieve the subnet ID. You use this ID to create the private endpoint.
168168
169169
```azurecli
170170
SUBNET_ID=$(az network vnet subnet show \
@@ -177,7 +177,7 @@ az group create \
177177
178178
## Create an environment
179179
180-
1. Create the Container Apps environment. Private endpoints are only supported by workload profiles environments, which is the default type for new environments.
180+
1. Create the Container Apps environment. Private endpoints are only supported in workload profiles environments, which is the default type for new environments.
181181
182182
```azurecli
183183
az containerapp env create \
@@ -186,7 +186,7 @@ az group create \
186186
--location $LOCATION
187187
```
188188
189-
1. Retrieve the environment ID. You use this to configure the environment.
189+
1. Retrieve the environment ID. You use this ID to configure the environment.
190190
191191
```azurecli
192192
ENVIRONMENT_ID=$(az containerapp env show \
@@ -196,7 +196,7 @@ az group create \
196196
--output tsv)
197197
```
198198
199-
1. Disable public network access for the environment. This is needed to enable private endpoints.
199+
1. Disable public network access for the environment. This setting is needed to enable private endpoints.
200200
201201
```azurecli
202202
az containerapp env update \
@@ -221,7 +221,7 @@ az network private-endpoint create \
221221

222222
### Configure the private DNS zone
223223

224-
1. Retrieve the private endpoint IP address. You use this to add a DNS record to your private DNS zone.
224+
1. Retrieve the private endpoint IP address. You use this address to add a DNS record to your private DNS zone.
225225

226226
```azurecli
227227
PRIVATE_ENDPOINT_IP_ADDRESS=$(az network private-endpoint show \
@@ -231,7 +231,7 @@ az network private-endpoint create \
231231
--output tsv)
232232
```
233233
234-
1. Retrieve the environment default domain. You use this to add a DNS record to your private DNS zone.
234+
1. Retrieve the environment default domain. You use this domain to add a DNS record to your private DNS zone.
235235
236236
```azurecli
237237
DNS_RECORD_NAME=$(az containerapp env show \
@@ -366,7 +366,7 @@ The administrator username must be between 1 and 20 characters long.
366366

367367
The administrator password has the following requirements:
368368
- Must be between 12 and 123 characters long.
369-
- Must have 3 of the following: 1 lower case character, 1 upper case character, 1 number, and 1 special character.
369+
- Must have three of the following characters: 1 lower case character, 1 upper case character, 1 number, and 1 special character.
370370

371371
::: zone-end
372372

@@ -411,12 +411,12 @@ The administrator password has the following requirements:
411411
412412
## Clean up resources
413413
414-
If you're not going to continue to use this application, you can remove the **my-container-apps** resource group. This deletes the Azure Container Apps instance and all associated services.
414+
If you're not going to continue to use this application, you can remove the **my-container-apps** resource group. This action deletes the Azure Container Apps instance and all associated services.
415415
416416
::: zone pivot="azure-cli"
417417
418418
> [!CAUTION]
419-
> The following command deletes the specified resource group and all resources contained within it. If resources outside the scope of this guide exist in the specified resource group, they will also be deleted.
419+
> The following command deletes the specified resource group and all resources contained within it. If resources outside the scope of this guide exist in the specified resource group, they'll also be deleted.
420420
421421
```azurecli
422422
az group delete --name $RESOURCE_GROUP

articles/container-apps/quickstart-portal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ In the *Basics* tab, do the following actions.
6363
<!-- Deploy the container app -->
6464
[!INCLUDE [container-apps-create-portal-deploy.md](../../includes/container-apps-create-portal-deploy.md)]
6565

66-
1. The following message appears in your browser.
66+
4. The following message appears in your browser.
6767

6868
:::image type="content" source="media/get-started/azure-container-apps-quickstart.png" alt-text="Your first Azure Container Apps deployment.":::
6969

0 commit comments

Comments
 (0)