Skip to content

Commit 75d1f5c

Browse files
Merge pull request #209908 from mumurug-MSFT/patch-9
(AzureCXP) fixes MicrosoftDocs/azure-docs#97871
2 parents 25947b0 + 8d4ab03 commit 75d1f5c

File tree

1 file changed

+25
-1
lines changed

1 file changed

+25
-1
lines changed

articles/api-management/api-management-howto-ip-addresses.md

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,31 @@ API Management uses a public IP address for a connection outside the VNet or a p
9494

9595
If your API Management service is a Consumption tier service, it doesn't have a dedicated IP address. Consumption tier service runs on a shared infrastructure and without a deterministic IP address.
9696

97-
For traffic restriction purposes, you can use the range of IP addresses of Azure data centers. Refer to [the Azure Functions documentation article](../azure-functions/ip-addresses.md#data-center-outbound-ip-addresses) for precise steps.
97+
If you need to add the outbound IP addresses used by your Consumption tier instance to an allowlist, you can add the instance's data center (Azure region) to an allowlist. You can [download a JSON file that lists IP addresses for all Azure data centers](https://www.microsoft.com/download/details.aspx?id=56519). Then find the JSON fragment that applies to the region that your instance runs in.
98+
99+
For example, the following JSON fragment is what the allowlist for Western Europe might look like:
100+
101+
```json
102+
{
103+
"name": "AzureCloud.westeurope",
104+
"id": "AzureCloud.westeurope",
105+
"properties": {
106+
"changeNumber": 9,
107+
"region": "westeurope",
108+
"platform": "Azure",
109+
"systemService": "",
110+
"addressPrefixes": [
111+
"13.69.0.0/17",
112+
"13.73.128.0/18",
113+
... Some IP addresses not shown here
114+
"213.199.180.192/27",
115+
"213.199.183.0/24"
116+
]
117+
}
118+
}
119+
```
120+
121+
For information about when this file is updated and when the IP addresses change, expand the **Details** section of the [Download Center page](https://www.microsoft.com/en-us/download/details.aspx?id=56519).
98122

99123
## Changes to the IP addresses
100124

0 commit comments

Comments
 (0)