Hasan Qusay
Hasan Qusay

Reputation: 81

Does azure assign a different subnet or IP to each web App?

Hi I'm trying to make 400 web apps using azure services but the apps have to be off different subnets at least. In other words, I don't want to apps to share the same IP with the same subnet. So How can I do that? And how does Azure help in these situations

Upvotes: 1

Views: 359

Answers (1)

Joel Guerra
Joel Guerra

Reputation: 6180

You can use IP based SSL certificates to ensure each URL has a unique IP. (see documentation)

Each App Service Plan has a limit of 10 Web Apps and IP based SSL certificates so you would likely need 40 App Service Plans. You may run into an account wide limit on the number of static IPs you can claim. Possible solutions to this would be to contact customer support to get your quota increased or use multiple Azure subscriptions.

Upvotes: 2

Related Questions