Azure Proactive Resiliency Library v2
Tools Glossary GitHub GitHub Issues Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Back to homepage

privateEndpoints

Summary

RecommendationImpactCategoryAutomation AvailablePG Verified
成功していない接続状態のプライベート エンドポイントに関する問題を解決するMediumHigh AvailabilityYesVerified

Details


成功していない接続状態のプライベート エンドポイントに関する問題を解決する

Impact:  Medium Category:  High Availability PG Verified:  Verified

Description:

プライベート エンドポイントには、静的 IP アドレスとネットワーク インターフェイス名という 2 つのカスタム プロパティがあり、作成時に設定する必要があります。成功状態でない場合は、エンドポイントまたは関連リソースに問題がある可能性があります。

Potential Benefits:

Ensure connection availability
Learn More:
Private endpoint connections

ARG Query:

Click the Azure Resource Graph tab to view the 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 = "b89c9acc-0aba-fb44-9ff2-3dbfcf97dce7", name, id, tags, param1 = strcat("provisioningState: ", tostring(properties.provisioningState)), param2 = strcat("provisioningState: ", tostring(properties.privateLinkServiceConnections[0].properties.provisioningState))