Private Endpoints
The presented resiliency recommendations in this guidance include Private Endpoints and associated resources and settings.
Summary of Recommendations
Recommendation | Category | Impact | State | ARG Query Available |
---|---|---|---|---|
PEP-1 - Resolve issues with Private Endpoints in non Succeeded connection state | Networking | Medium | Preview | Yes |
Definitions of states can be found here
Recommendations Details
PEP-1 - 成功以外の接続状態のプライベート エンドポイントの問題を解決します
Category: Networking
Impact: Medium
Guidance
プライベート エンドポイントには、静的 IP アドレスとネットワーク インターフェイス名の 2 つのカスタム プロパティがあります。これらのプロパティは、プライベート エンドポイントの作成時に設定する必要があります。状態が 成功 状態でない場合は、プライベート エンドポイントまたは関連するリソースに問題がある可能性があります。
Resources
Resource Graph Query
// Azure Resource Graph Query
// This query will return all Private Endpoints that are not in a Succeeded state
resources
| where type =~ "microsoft.network/privateendpoints"
| where properties.provisioningState != "Succeeded" or properties.privateLinkServiceConnections[0].properties.provisioningState != "Succeeded"
| project recommendationId = "pep-1", name, id, tags, param1 = strcat("provisioningState: ", tostring(properties.provisioningState)), param2 = strcat("provisioningState: ", tostring(properties.privateLinkServiceConnections[0].properties.provisioningState))