Azure Static Web Apps を Azure Front Door 専用にアクセス制限を構成する
動機
Azure Static Web Appsをプライベート エンドポイントで非公開にして、Azure Front Doorからプライベート リンクさせるのが、アレなんだろうけどAzure Front DoorのPremium高いよ・・・って事で、お安く済ませること出来ないの?
あるよ・・・「Azure Front Door を Azure Static Web Apps 用に構成する」
有るんかい!
staticwebapp.config.json
{
"$schema": "https://json.schemastore.org/staticwebapp.config.json",
"forwardingGateway": {
"requiredHeaders": {
"X-Azure-FDID": "フロントドアID"
}
},
"networking": {
"allowedIpRanges": [
"AzureFrontDoor.Backend"
]
}
}
Azure Pieplineで動的にする