Skip to content

Commit 5c36124

Browse files
authored
Merge pull request #175825 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to master to sync with https://github.com/MicrosoftDocs/azure-docs (branch master)
2 parents a67b8f9 + 947f3a7 commit 5c36124

File tree

2 files changed

+13
-8
lines changed

2 files changed

+13
-8
lines changed

articles/event-grid/system-topics.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,13 @@ You can create a system topic in two ways:
5252

5353
When you use [CLI](create-view-manage-system-topics-cli.md), [REST](/rest/api/eventgrid/version2020-06-01/eventsubscriptions/createorupdate), or [Azure Resource Manager template](create-view-manage-system-topics-arm.md), you can choose either of the above methods. We recommend that you create a system topic first and then create a subscription on the topic, as this is the latest way of creating system topics.
5454

55+
### Failure to create system topics
5556
The system topic creation fails if you have set up Azure policies in such a way that the Event Grid service can't create it. For example, you may have a policy that allows creation of only certain types of resources (for example: Azure Storage, Azure Event Hubs, etc.) in the subscription.
5657

58+
In such cases, event flow functionality is preserved. However, metrics and diagnostic functionalities of system topics will be unavailable.
59+
60+
If you require this functionality, allow creation of resources of the system topic type, and create the missing system topic as described in the [Lifecycle of system topics](#lifecycle-of-system-topics) section.
61+
5762
## Location and resource group for a system topic
5863
For Azure event sources that are in a specific region/location, system topic is created in the same location as the Azure event source. For example, if you create an event subscription for an Azure blob storage in East US, the system topic is created in East US. For global Azure event sources such as Azure subscriptions, resource groups, or Azure Maps, Event Grid creates the system topic in **global** location.
5964

articles/private-link/disable-private-endpoint-network-policy.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -71,11 +71,11 @@ $vnet | Set-AzVirtualNetwork
7171
This section describes how to disable subnet private endpoint policies using Azure CLI. Use [az network vnet subnet update](/cli/azure/network/vnet/subnet#az_network_vnet_subnet_update) to disable the policy.
7272

7373
```azurecli
74-
az network vnet subnet update \
74+
az network vnet subnet update \
7575
--disable-private-endpoint-network-policies true \
76-
--name default \
77-
--resource-group myResourceGroup \
78-
--vnet-name myVirtualNetwork \
76+
--name default \
77+
--resource-group myResourceGroup \
78+
--vnet-name myVirtualNetwork
7979
8080
```
8181

@@ -84,11 +84,11 @@ az network vnet subnet update \
8484
This section describes how to enable subnet private endpoint policies using Azure CLI. Use [az network vnet subnet update](/cli/azure/network/vnet/subnet#az_network_vnet_subnet_update) to enable the policy.
8585

8686
```azurecli
87-
az network vnet subnet update \
87+
az network vnet subnet update \
8888
--disable-private-endpoint-network-policies false \
89-
--name default \
90-
--resource-group myResourceGroup \
91-
--vnet-name myVirtualNetwork \
89+
--name default \
90+
--resource-group myResourceGroup \
91+
--vnet-name myVirtualNetwork
9292
9393
```
9494
## Resource Manager template

0 commit comments

Comments
 (0)