Skip to content

Commit 804a566

Browse files
Merge pull request #271616 from tomvcassidy/applicationGatewayLimitationClarification
application gateway protocol support
2 parents e528b7f + b8b464d commit 804a566

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

articles/container-instances/container-instances-application-gateway.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
---
22
title: Static IP address for container group
3-
description: Create a container group in a virtual network and use an Azure application gateway to expose a static frontend IP address to a containerized web app
3+
description: Create a container group in a virtual network and use an Azure application gateway to expose a static frontend IP address to a containerized web app.
44
ms.author: tomcassidy
55
author: tomvcassidy
66
ms.service: container-instances
77
ms.custom: devx-track-azurecli
88
services: container-instances
99
ms.topic: how-to
10-
ms.date: 06/17/2022
10+
ms.date: 04/09/2024
1111
---
1212

1313
# Expose a static IP address for a container group
1414

1515
This article shows one way to expose a static, public IP address for a [container group](container-instances-container-groups.md) by using an Azure [application gateway](../application-gateway/overview.md). Follow these steps when you need a static entry point for an external-facing containerized app that runs in Azure Container Instances.
1616

17-
In this article you use the Azure CLI to create the resources for this scenario:
17+
In this article, you use the Azure CLI to create the resources for this scenario:
1818

1919
* An Azure virtual network
2020
* A container group deployed [in the virtual network](container-instances-vnet.md) that hosts a small web app
@@ -23,6 +23,8 @@ In this article you use the Azure CLI to create the resources for this scenario:
2323
As long as the application gateway runs and the container group exposes a stable private IP address in the network's delegated subnet, the container group is accessible at this public IP address.
2424

2525
> [!NOTE]
26+
> Azure Application Gateway [supports HTTP, HTTPS, HTTP/2, and WebSocket protocols](../application-gateway/application-gateway-faq.yml).
27+
>
2628
> Azure charges for an application gateway based on the amount of time that the gateway is provisioned and available, as well as the amount of data it processes. See [pricing](https://azure.microsoft.com/pricing/details/application-gateway/).
2729
2830
## Create virtual network
@@ -47,7 +49,7 @@ az network vnet create \
4749
--subnet-prefix 10.0.1.0/24
4850
```
4951

50-
Use the [az network vnet subnet create][az-network-vnet-subnet-create] command to create a subnet for the backend container group. Here it's named *myACISubnet*.
52+
Use the [az network vnet subnet create][az-network-vnet-subnet-create] command to create a subnet for the backend container group. Here, its name is *myACISubnet*.
5153

5254
```azurecli
5355
az network vnet subnet create \

0 commit comments

Comments
 (0)