Skip to content

Commit 6cc0eb2

Browse files
authored
Merge pull request #113939 from spelluru/egridplink0505
Event Grid Private Link GA
2 parents 803e75b + ef4e3ab commit 6cc0eb2

File tree

7 files changed

+16
-222
lines changed

7 files changed

+16
-222
lines changed

.openpublishing.redirection.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5451,6 +5451,16 @@
54515451
"redirect_url": "/azure/event-grid/template-samples",
54525452
"redirect_document_id": false
54535453
},
5454+
{
5455+
"source_path": "articles/event-grid/premium-basic-tiers.md",
5456+
"redirect_url": "https://azure.microsoft.com/pricing/details/event-grid/",
5457+
"redirect_document_id": false
5458+
},
5459+
{
5460+
"source_path": "articles/event-grid/update-tier.md",
5461+
"redirect_url": "https://azure.microsoft.com/pricing/details/event-grid/",
5462+
"redirect_document_id": false
5463+
},
54545464
{
54555465
"source_path": "articles/azure-resource-manager/resource-manager-samples-powershell-deploy.md",
54565466
"redirect_url": "/azure/azure-resource-manager/templates/deploy-powershell",

articles/event-grid/configure-firewall.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ Invoke-RestMethod -Method 'Get' `
254254
-Headers $Headers `
255255
| ConvertTo-Json -Depth 5
256256
257-
# prepare the body for REST PUT method. Notice that it includes inbound IP rules now. This feature available in both basic and premium tiers.
257+
# prepare the body for REST PUT method. Notice that it includes inbound IP rules now. This feature is available in both basic and premium tiers.
258258
$body = @{"location"="<LOCATION>"; "sku"= @{"name"="basic"}; "properties"=@{"publicNetworkAccess"="enabled"; "inboundIpRules"=@(@{"ipmask"="<IP ADDR or CIDR MASK>";"action"="allow"}, @{"ipmask"="<IP ADDR or CIDR MASK>";"action"="allow"})}} | ConvertTo-Json -Depth 5
259259
260260
# update the topic with inbound IP rules

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

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,6 @@ You can use [private endpoints](../private-link/private-endpoint-overview.md) to
1515

1616
This article describes how to configure private endpoints for topics or domains.
1717

18-
> [!IMPORTANT]
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.
20-
2118
## Use Azure portal
2219
This section shows you how to use the Azure portal to create a private endpoint for a topic or a domain.
2320

@@ -201,7 +198,7 @@ Here's a sample script that creates the following Azure resources:
201198
- Resource group
202199
- Virtual network
203200
- Subnet in the virtual network
204-
- Azure Event Grid topic (premium tier)
201+
- Azure Event Grid topic
205202
- Private endpoint for the topic
206203

207204
> [!NOTE]
@@ -250,8 +247,7 @@ az network vnet subnet update \
250247
az eventgrid topic create \
251248
--resource-group $resourceGroupName \
252249
--name $topicName \
253-
--location $location \
254-
--sku "Premium"
250+
--location $location
255251
256252
# verify that the topic was created.
257253
az eventgrid topic show \
@@ -365,7 +361,7 @@ $virtualNetwork | Set-AzVirtualNetwork
365361
366362

367363
```azurepowershell-interactive
368-
$body = @{"location"="<LOCATION>"; "sku"= @{"name"="premium"}; "properties"=@{"publicNetworkAccess"="disabled"}} | ConvertTo-Json
364+
$body = @{"location"="<LOCATION>"; "properties"=@{"publicNetworkAccess"="disabled"}} | ConvertTo-Json
369365
370366
# create topic
371367
Invoke-RestMethod -Method 'Put' `

articles/event-grid/network-security.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ When you resolve the topic or domain endpoint URL from outside the VNet with the
5757
| Name | Type | Value |
5858
| --------------------------------------------- | ----------| --------------------------------------------- |
5959
| `topicA.westus.eventgrid.azure.net` | CNAME | `topicA.westus.privatelink.eventgrid.azure.net` |
60-
| `topicA.westus.privatelink.eventgrid.azure.net` | CNAME | \<azure traffic manager profile\>
60+
| `topicA.westus.privatelink.eventgrid.azure.net` | CNAME | \<Azure traffic manager profile\>
6161

6262
You can deny or control access for a client outside the VNet through the public endpoint using the [IP firewall](#ip-firewall).
6363

@@ -88,11 +88,10 @@ The following table describes the various states of the private endpoint connect
8888
For publishing to be successful, the private endpoint connection state should be **approved**. If a connection is rejected, it can't be approved using the Azure portal. The only possibility is to delete the connection and create a new one instead.
8989

9090
## Pricing and quotas
91-
**Private endpoints** are only available with premium tier topics and domains. Event Grid allows up to 64 private endpoint connections to be created per topic or domain. To upgrade from basic tier to premium tier, see the [Update pricing tier](update-tier.md) article.
91+
**Private endpoints** is available in both basic and premium tiers of Event Grid. Event Grid allows up to 64 private endpoint connections to be created per topic or domain.
9292

9393
**IP Firewall** feature is available in both basic and premium tiers of Event Grid. We allow up to 16 IP Firewall rules to be created per topic or domain.
9494

95-
9695
## Next steps
9796
You can configure IP firewall for your Event Grid resource to restrict access over the public internet from only a select set of IP Addresses or IP Address ranges. For step-by-step instructions, see [Configure IP firewall](configure-firewall.md).
9897

articles/event-grid/premium-basic-tiers.md

Lines changed: 0 additions & 46 deletions
This file was deleted.

articles/event-grid/toc.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88
href: overview.md
99
- name: Compare messaging services
1010
href: compare-messaging-services.md
11-
- name: Premium vs. basic tiers
12-
href: premium-basic-tiers.md
1311
- name: Quickstarts
1412
expanded: true
1513
items:
@@ -175,8 +173,6 @@
175173
href: configure-private-endpoints.md
176174
- name: Configure IP firewall (preview)
177175
href: configure-firewall.md
178-
- name: Update pricing tier
179-
href: update-tier.md
180176
- name: Post to custom topic
181177
href: post-to-custom-topic.md
182178
- name: Receive events at HTTP endpoint

articles/event-grid/update-tier.md

Lines changed: 0 additions & 161 deletions
This file was deleted.

0 commit comments

Comments
 (0)