Skip to content

Commit 2dbd396

Browse files
committed
updates
1 parent ea8f7ae commit 2dbd396

File tree

4 files changed

+13
-22
lines changed

4 files changed

+13
-22
lines changed

articles/event-grid/configure-firewall.md

Lines changed: 7 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Configure firewall for Azure Event Grid topics or domains (Preview)
2+
title: Configure IP firewall for Azure Event Grid topics or domains (Preview)
33
description: This article describes how to configure firewall settings for Event Grid topics or domains.
44
services: event-grid
55
author: spelluru
@@ -16,28 +16,24 @@ By default, topic and domain are accessible from internet as long as the request
1616
This article describes how to configure IP firewall settings for Azure Event Grid topics or domains.
1717

1818
## Use Azure portal
19+
This section shows you how to use the Azure portal to create inbound IP firewall rules. The steps shown in this section are for topics. You can use similar steps to create inbound IP rules for **domains**.
1920

2021
1. In the [Azure portal](https://portal.azure.com), Navigate to your Event Grid topic or domain, and switch to the **Networking** tab.
21-
2. For the **Allow access from** field, select **Public networks** to allow all network, including the internet, to access the resource. You can restrict the traffic using IP-based firewall rules.
22+
2. Select **Public networks** to allow all network, including the internet, to access the resource.
2223

23-
If you want to allow only sources with selected IP addresses to publish to the topic or domain, enter the **range of IP addresses**. Singular addresses can be entered in IPv4 notation while address ranges must be entered in CIDR notation. Several online tools exist for [converting IP ranges to CIDR](https://ipaddressguide.com/cidr).
24+
You can restrict the traffic using IP-based firewall rules. Specify a single IPv4 address or a range of IP addresses in Classless inter-domain routing (CIDR) notation.
2425

2526
![Public networks page](./media/configure-firewall/public-networks-page.png)
2627
3. Select **Private endpoints only** to allow only private endpoint connections to access this resource. Use the **Private endpoint connections** tab on this page to manage connections.
2728

2829
![Public networks page](./media/configure-firewall/private-endpoints-page.png)
2930
4. Select **Save** on the toolbar.
3031

31-
> [!NOTE]
32-
> The steps shown in this section are mostly for topics. You can use similar steps to create inbound IP rules for **domains**.
33-
3432

3533

3634
## Use Azure CLI
37-
This section shows you how to use Azure CLI commands to create topics with inbound IP rules.
35+
This section shows you how to use Azure CLI commands to create topics with inbound IP rules. The steps shown in this section are for topics. You can use similar steps to create inbound IP rules for **domains**.
3836

39-
> [!NOTE]
40-
> The steps shown in this section are mostly for topics. You can use similar steps to create inbound IP rules for **domains**.
4137

4238
### Enable public network access for an existing topic
4339
By default, the public network access is enabled for topics and domains. You can restrict traffic by configuring inbound IP firewall rules.
@@ -83,11 +79,9 @@ az rest --method put \
8379
--body {\""location\"":\""<LOCATION>\", \""properties\"" :{\""publicNetworkAccess\"":\""enabled\"", \""InboundIpRules\"": [ {\""ipMask\"": \""<IP ADDRESS or IP ADDRESS RANGE in CIDR notation>\"", \""action\"": \""allow\""}, {\""ipMask\"": \""<IP ADDRESS or IP ADDRESS RANGE in CIDR notation>\"", \""action\"": \""allow\""} ]}}
8480
```
8581

86-
## Use PowerShell
87-
This section shows you how to use Azure PowerShell commands to create Azure Event Grid topics with inbound rules.
8882

89-
> [!NOTE]
90-
> The steps shown in this section are mostly for topics. You can use similar steps to create inbound IP rules for **domains**.
83+
## Use PowerShell
84+
This section shows you how to use Azure PowerShell commands to create Azure Event Grid topics with inbound IP firewall rules. The steps shown in this section are for topics. You can use similar steps to create inbound IP rules for **domains**.
9185

9286
### Prerequisite
9387
Follow instructions from [How to: Use the portal to create an Azure AD application and service principal that can access resources](../active-directory/develop/howto-create-service-principal-portal.md) to create an Azure Active Directory application and note down the following values:

articles/event-grid/configure-private-endpoints.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ You can use [private endpoints](../private-link/private-endpoint-overview.md) to
1616
This article describes how to configure private endpoints for topics or domains.
1717

1818
> [!IMPORTANT]
19-
> Private endpoints feature is available for topics and domains only in premium tier.
19+
> Private endpoints feature is available for topics and domains only in premium tier. To upgrade from basic tier to premium tier, see the [Update pricing tier](update-tier.md) article.
2020
2121
## Use Azure portal
2222
This section shows you how to use the Azure portal to create a private endpoint for a topic or a domain.

articles/event-grid/toc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@
126126
href: configure-private-endpoints.md
127127
- name: Configure IP firewall (preview)
128128
href: configure-firewall.md
129-
- name: Update pricing tier of a topic or a domain
129+
- name: Update pricing tier
130130
href: update-tier.md
131131
- name: Post to custom topic
132132
href: post-to-custom-topic.md

articles/event-grid/update-tier.md

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ This article shows you how to update pricing tier of an Azure Event Grid topic b
1717
This section shows how to change the pricing tier of a topic or a domain in the Azure portal.
1818

1919
### Overview page
20-
You can change the pricing tier of a topic or a domain on the **Overview** page. The following example shows how to upgrade a topic from the basic tier to premium tier. The steps for downgrading a topic/domain from the premium tier to basic tier are similar.
20+
You can change the pricing tier of a topic or a domain on the **Overview** page. The following example shows how to upgrade a topic from the basic tier to premium tier. The steps to downgrade from the premium tier to basic tier are similar.
2121

2222
1. In the [Azure portal](https://portal.azure.com), navigate to the topic or domain page.
2323
2. On the **Overview** page, select the current pricing tier (in the following example, it's **basic**.)
@@ -51,7 +51,7 @@ You can **upgrade** from the basic tier to the premium tier on the **Networking*
5151

5252

5353
## Use Azure CLI
54-
This section shows you how to use Azure CLI commands to change pricing tier for a topic or domain.
54+
This section shows you how to use Azure CLI commands to change the pricing tier of a topic or domain.
5555

5656
### Upgrade a topic from basic to premium
5757

@@ -88,7 +88,7 @@ az rest --method patch \
8888

8989

9090
## Use Azure PowerShell
91-
This section shows you how to use PowerShell commands to change pricing tier for a topic or domain.
91+
This section shows you how to use PowerShell commands to change the pricing tier of a topic or domain.
9292

9393
### Prepare token and headers for REST API calls
9494
Run the following prerequisite commands to get an authentication token to use with REST API calls, and authorization and other header information.
@@ -158,7 +158,4 @@ Invoke-RestMethod -Method 'Patch' `
158158
```
159159

160160
## Next steps
161-
162-
* For information about monitoring event deliveries, see [Monitor Event Grid message delivery](monitor-event-delivery.md).
163-
* For more information about the authentication key, see [Event Grid security and authentication](security-authentication.md).
164-
* For more information about creating an Azure Event Grid subscription, see [Event Grid subscription schema](subscription-creation-schema.md).
161+
For premier tier topics and domains, you can configure private endpoints to restrict access from only from selected virtual networks. For step-by-step instructions, see [Configure private endpoints](configure-private-endpoints.md).

0 commit comments

Comments
 (0)