diff --git a/README.md b/README.md index 792b9ea..b3c1e4d 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,7 @@ A Python utility that retrieves, processes, and organizes the official [Databric - Processes and organizes IP ranges by **cloud** (AWS, Azure, GCP) and **type** (inbound / outbound) - Creates individual text files per cloud and type (e.g. `aws.txt`, `azure-outbound.txt`, `gcp.txt`) - **Per-region feeds** at `-.txt` (e.g. `aws-us-east-1.txt`, `azure-eastus.txt`) — emitted only when the region has ≥1 CIDR, so consumers can scope firewall rules to their actual workspace regions without parsing JSON +- **Per-region + direction feeds** at `--.txt` (e.g. `aws-us-east-1-outbound.txt`, `azure-eastus-outbound.txt`) — emitted only when that region+direction has ≥1 CIDR, ideal for targets that accept only one direction (Azure Storage Account network rules, AWS KMS key policies) - Format compatible with **Palo Alto Networks (PA)** devices (one CIDR per line) - **Terraform module** at [`terraform/`](terraform/) — exposes the per-region CIDR list as a sorted, deduplicated output you can wire into any TF resource (managed prefix list, IP group, storage account network rules, Cloud SQL authorized networks, etc.). No new compute infrastructure required. - Maintains a history of JSON files @@ -79,7 +80,7 @@ python extract-databricks-ips.py --cloud aws --region us-east-1,eu-west-1 --outp ## Implementation Notes -The script produces output in a format compatible with Palo Alto Networks (PA) devices. Each cloud/type combination is available as a separate TXT file (e.g. `aws-outbound.txt`, `azure.txt`) for easy import into firewall rules or automation. Per-region feeds (`-.txt`) let consumers scope to their actual workspace regions — recommended in production to avoid allowlisting the entire cloud. +The script produces output in a format compatible with Palo Alto Networks (PA) devices. Each cloud/type combination is available as a separate TXT file (e.g. `aws-outbound.txt`, `azure.txt`) for easy import into firewall rules or automation. Per-region feeds (`-.txt`) let consumers scope to their actual workspace regions — recommended in production to avoid allowlisting the entire cloud. Per-region + direction feeds (`--.txt`) further narrow the rule set for targets that only accept one direction (e.g. Azure Storage Account network rules, AWS KMS key policies). For production-grade guidance on automating firewall rule updates across AWS, Azure, GCP, and Palo Alto Networks — including Lambda/Function App code, Managed Prefix Lists, IP Groups, Hierarchical Firewall Policies, EDL configuration, and Terraform patterns — see: diff --git a/docs/firewall-automation-guide.md b/docs/firewall-automation-guide.md index 02b1127..eb68c2a 100644 --- a/docs/firewall-automation-guide.md +++ b/docs/firewall-automation-guide.md @@ -55,10 +55,13 @@ Updated weekly by the GitHub Action in this repo. Direct download: | Per cloud (all regions) | `…/output/.txt` — `aws.txt`, `azure.txt`, `gcp.txt` | | Per cloud, by direction | `…/output/-.txt` | | **Per region** (recommended) | `…/output/-.txt` — e.g. `aws-us-east-1.txt`, `azure-eastus.txt`, `gcp-us-central1.txt` | +| **Per region + direction** (tightest scope) | `…/output/--.txt` — e.g. `aws-us-east-1-outbound.txt`, `azure-eastus-outbound.txt`, `gcp-us-central1-outbound.txt` | Base URL: `https://bhavink.github.io/databricksIPranges`. One CIDR per line — drop it straight into a Lambda, Function, EDL, or firewall config. -> Per-region files are emitted only when the region has ≥1 CIDR. Browse [output/](https://bhavink.github.io/databricksIPranges/output/) for the live list, or `--list-regions --cloud ` via the CLI. +> Per-region and per-region+direction files are emitted only when that slice has ≥1 CIDR. Browse [output/](https://bhavink.github.io/databricksIPranges/output/) for the live list, or `--list-regions --cloud ` via the CLI. +> +> **When to pick which:** use the combined `-.txt` unless your target only accepts one direction. **Azure Storage Account network rules** and **AWS KMS key policies** are common cases where only outbound CP IPs apply — pin those to `--outbound.txt` to keep the rule set tight. ### Option B — `extract-databricks-ips.py` (programmatic, region-scoped) diff --git a/docs/index.html b/docs/index.html index ed67871..6f1c57a 100644 --- a/docs/index.html +++ b/docs/index.html @@ -18,12 +18,12 @@

Databricks IP Ranges – AWS, Azure, GCP

-
🕐 Last updated: 2026-06-01 04:45:49 UTC
+
🕐 Last updated: 2026-06-01 14:58:32 UTC

Source JSON Files

Revision / schema version: 1.0

Live: ip-ranges.json — machine-readable IP ranges (AWS, Azure, GCP). Docs: AWS · Azure · GCP

-

Latest snapshot on this site: ip-ranges-20260601-0445.json

+

Latest snapshot on this site: ip-ranges-20260601-1458.json

Previous JSON versions: View JSON History

Inbound vs outbound IPs

@@ -48,8 +48,9 @@

Palo Alto Networks Ready Files

  • Cloud + typeaws.txt, aws-inbound.txt, aws-outbound.txt, azure.txt, gcp.txt
  • Cloud + regionaws-us-east-1.txt, azure-eastus.txt, gcp-us-central1.txt (emitted only when the region has ≥1 CIDR)
  • +
  • Cloud + region + directionaws-us-east-1-outbound.txt, azure-eastus-inbound.txt, gcp-us-central1-outbound.txt (emitted only when that region+direction has ≥1 CIDR)
-

Use the per-region files in production to scope firewall rules to your actual workspace regions instead of allowlisting the entire cloud. Download the file you need and import it into your PA firewall configuration, EDL, AWS Managed Prefix List, Azure IP Group, or GCP Firewall Policy.

+

Use the per-region files in production to scope firewall rules to your actual workspace regions instead of allowlisting the entire cloud. The direction-scoped per-region files are the right fit when the target only accepts one direction — e.g. Azure Storage Account network rules (outbound CP IPs) or AWS KMS key policies (outbound CP IPs). Download the file you need and import it into your PA firewall configuration, EDL, AWS Managed Prefix List, Azure IP Group, or GCP Firewall Policy.

Automation-Friendly Design

This page was created to simplify the integration of Databricks IP ranges into firewalls. The project provides a static link to the latest JSON and per-cloud TXT files so you can automate allowlisting without parsing the official API response each time.

@@ -71,7 +72,7 @@

Databricks IP Ranges Script

Contact

Connect on LinkedIn · Reach on GitHub

-

Generated on 2026-06-01 04:45:49 UTC by GitHub Automation

+

Generated on 2026-06-01 14:58:32 UTC by GitHub Automation

This page, its contents, and the associated repository are provided "AS IS" without warranty of any kind. Please refer to the README in the repository for the full disclaimer.
diff --git a/docs/json-history/index.html b/docs/json-history/index.html index 1bbdb0b..d69ba64 100644 --- a/docs/json-history/index.html +++ b/docs/json-history/index.html @@ -6,14 +6,16 @@

JSON History

Snapshot of the official Databricks IP ranges JSON per run. Click to download.

    +
  • ip-ranges-20260601-1458.json
  • ip-ranges-20260601-0445.json
  • ip-ranges-20260525-0416.json
  • ip-ranges-20260518-0406.json
  • +
  • ip-ranges-20260511-1354.json
  • ip-ranges-20260511-0358.json
  • ip-ranges-20260504-1712.json
  • ip-ranges-20260504-0340.json
  • diff --git a/docs/json-history/ip-ranges-20260511-1354.json b/docs/json-history/ip-ranges-20260511-1354.json new file mode 100644 index 0000000..22307a4 --- /dev/null +++ b/docs/json-history/ip-ranges-20260511-1354.json @@ -0,0 +1,4169 @@ +{ + "timestampSeconds": 1770871875, + "schemaVersion": "1.0", + "prefixes": [ + { + "platform": "aws", + "region": "ap-northeast-1", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "18.99.67.176/28", + "35.72.28.0/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "ap-northeast-1", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "18.177.16.95/32", + "35.72.28.0/28", + "52.195.231.0/24" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "ap-northeast-2", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "18.98.129.32/28", + "3.38.156.176/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "ap-northeast-2", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "3.38.156.176/28", + "43.203.162.0/24", + "54.180.50.119/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "ap-south-1", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "18.96.224.16/28", + "65.0.37.64/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "ap-south-1", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "13.200.135.0/24", + "13.232.248.161/32", + "65.0.37.64/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "ap-southeast-1", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "13.214.1.96/28", + "18.99.38.0/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "ap-southeast-1", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "13.213.212.4/32", + "13.214.1.96/28", + "47.128.12.0/24" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "ap-southeast-2", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "18.98.192.128/28", + "3.26.4.0/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "ap-southeast-2", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "13.237.96.217/32", + "3.26.4.0/28", + "3.27.139.0/24" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "ap-southeast-3", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "18.98.96.160/28", + "18.98.96.192/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "ap-southeast-3", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "18.98.96.163/32", + "18.98.98.0/24" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "ca-central-1", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "18.99.0.192/28", + "3.96.84.208/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "ca-central-1", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "15.157.166.0/24", + "3.96.84.208/28", + "35.183.59.105/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "eu-central-1", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "18.159.44.32/28", + "18.96.33.224/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "eu-central-1", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "18.159.32.64/32", + "18.159.44.32/28", + "3.77.216.0/24" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "eu-north-1", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "18.99.97.0/24" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "eu-west-1", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "18.97.193.128/28", + "3.250.244.112/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "eu-west-1", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "3.250.244.112/28", + "3.253.190.0/24", + "46.137.47.49/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "eu-west-2", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "18.134.65.240/28", + "18.98.160.48/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "eu-west-2", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "18.134.65.240/28", + "18.171.216.0/24", + "3.10.112.150/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "eu-west-3", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "13.39.141.128/28", + "18.98.64.208/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "eu-west-3", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "13.39.141.128/28", + "15.236.174.74/32", + "15.237.199.0/24" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "sa-east-1", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "15.229.120.16/28", + "18.96.64.128/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "sa-east-1", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "15.229.120.16/28", + "15.229.205.0/24", + "177.71.254.47/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "us-east-1", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "18.97.15.0/28", + "3.237.73.224/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "us-east-1", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "3.237.73.224/28", + "44.215.162.0/24", + "3.41.179.0/25", + "54.156.226.103/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "us-east-2", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "18.97.131.208/28", + "3.128.237.208/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "us-east-2", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "18.221.200.169/32", + "3.128.237.208/28", + "3.145.247.0/24" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "us-gov-west-1", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "3.30.186.128/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "us-gov-west-1", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "3.30.186.128/28", + "3.30.245.130/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "us-west-1", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "18.96.128.16/28", + "44.234.192.32/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "us-west-1", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "18.96.129.0/24", + "44.234.192.32/28", + "52.27.216.188/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "us-west-2", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "18.98.3.224/28", + "44.234.192.32/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "us-west-2", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "18.246.106.0/24", + "44.234.192.32/28", + "3.42.138.0/25", + "52.27.216.188/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "australiacentral", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "13.75.218.172/32", + "20.70.34.64/28", + "4.150.168.160/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "australiacentral", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "13.70.105.50/32", + "20.11.26.96/29", + "20.211.147.64/29", + "20.28.138.72/29", + "20.37.224.68/30", + "20.40.72.88/29", + "20.5.1.136/29", + "20.5.170.240/29", + "4.198.162.56/29", + "4.199.151.128/28", + "4.199.151.96/27", + "4.237.24.16/29", + "40.79.169.48/29" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "australiacentral2", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "13.75.218.172/32", + "20.193.110.128/28", + "4.150.168.160/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "australiacentral2", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "13.70.105.50/32", + "20.11.26.96/29", + "20.167.163.96/27", + "20.211.147.64/29", + "20.28.138.72/29", + "20.36.120.68/30", + "20.40.72.88/29", + "20.5.1.136/29", + "20.5.170.240/29", + "4.198.162.56/29", + "4.237.24.16/29", + "40.79.169.48/29" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "australiaeast", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "13.75.218.172/32", + "4.147.241.0/28", + "4.150.168.160/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "australiaeast", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "13.70.105.50/32", + "20.11.101.16/28", + "20.11.101.160/27", + "20.11.101.192/27", + "20.11.101.64/28", + "20.11.102.32/27", + "20.11.102.64/28", + "20.11.26.96/29", + "20.11.89.184/29", + "20.11.89.56/29", + "20.11.99.160/28", + "20.11.99.224/28", + "20.11.99.32/28", + "20.167.14.40/29", + "20.167.6.192/28", + "20.167.7.0/28", + "20.167.7.112/28", + "20.167.7.240/28", + "20.167.7.32/28", + "20.167.72.248/29", + "20.167.76.160/27", + "20.167.76.240/28", + "20.167.76.32/28", + "20.211.147.64/29", + "20.227.13.152/29", + "20.227.33.160/28", + "20.227.37.160/28", + "20.227.37.32/28", + "20.227.37.64/28", + "20.227.55.80/29", + "20.248.129.144/29", + "20.248.130.160/28", + "20.248.130.208/28", + "20.248.131.128/28", + "20.248.132.96/28", + "20.248.134.208/28", + "20.248.252.32/29", + "20.248.253.184/29", + "20.28.138.72/29", + "20.40.72.88/29", + "20.5.1.136/29", + "20.5.170.240/29", + "20.53.218.192/28", + "20.53.220.112/28", + "20.53.220.128/28", + "20.53.220.160/27", + "20.53.220.192/28", + "20.53.220.224/27", + "20.53.220.80/28", + "20.53.221.0/24", + "20.53.222.0/26", + "20.70.246.32/28", + "20.70.247.32/28", + "4.147.79.240/28", + "4.147.88.96/29", + "4.147.89.240/28", + "4.147.90.128/28", + "4.195.100.16/28", + "4.195.100.32/28", + "4.195.101.144/28", + "4.195.101.176/28", + "4.195.99.144/28", + "4.195.99.224/28", + "4.198.162.56/29", + "4.237.22.0/28", + "4.237.23.160/28", + "4.237.24.16/29", + "40.79.169.48/29" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "australiasoutheast", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "13.75.218.172/32", + "4.147.241.0/28", + "4.150.168.160/28", + "4.198.113.16/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "australiasoutheast", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "13.70.105.50/32", + "13.77.43.104/29", + "13.77.44.88/29", + "191.239.179.136/29", + "20.11.147.192/28", + "20.11.147.224/27", + "20.11.149.144/28", + "20.11.149.192/28", + "20.11.150.0/28", + "20.11.150.128/28", + "20.11.150.224/27", + "20.11.150.48/28", + "20.11.151.112/28", + "20.11.151.128/28", + "20.11.151.160/28", + "20.11.151.224/28", + "20.11.151.32/28", + "20.11.158.160/27", + "20.11.159.144/28", + "20.11.159.160/28", + "20.11.159.240/28", + "20.11.159.96/27", + "20.11.239.160/27", + "20.11.239.192/26", + "20.11.239.96/28", + "20.11.26.96/29", + "20.211.147.64/29", + "20.211.197.112/28", + "20.211.198.240/28", + "20.211.241.16/28", + "20.211.241.240/28", + "20.211.242.176/28", + "20.211.243.16/28", + "20.211.243.80/28", + "20.28.138.72/29", + "20.40.72.88/29", + "20.42.224.68/30", + "20.5.1.136/29", + "20.5.170.240/29", + "20.70.70.192/28", + "20.92.32.32/28", + "20.92.34.224/28", + "20.92.34.64/28", + "20.92.35.112/28", + "20.92.36.48/28", + "20.92.37.128/28", + "20.92.38.176/28", + "20.92.39.0/28", + "20.92.39.128/28", + "20.92.39.240/28", + "20.92.40.232/29", + "20.92.41.160/29", + "4.198.143.240/28", + "4.198.157.160/28", + "4.198.162.56/29", + "4.198.75.32/28", + "4.198.76.128/27", + "4.198.76.16/28", + "4.198.77.16/28", + "4.198.77.64/28", + "4.198.77.96/28", + "4.198.78.48/28", + "4.198.85.128/25", + "4.198.85.96/27", + "4.198.86.0/26", + "4.198.86.64/27", + "4.198.94.176/28", + "4.198.94.192/26", + "4.198.94.80/28", + "4.198.95.0/25", + "4.198.95.128/28", + "4.200.172.128/28", + "4.200.172.72/29", + "4.237.24.16/29", + "40.127.75.248/29", + "40.79.169.48/29", + "52.189.195.56/29", + "52.189.210.64/29", + "52.189.211.40/29", + "52.189.214.120/29" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "brazilsouth", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "104.41.54.118/32", + "20.201.68.160/28", + "4.150.168.160/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "brazilsouth", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "191.232.53.223/32", + "191.233.243.64/28", + "191.238.134.24/29", + "20.195.138.176/29", + "20.195.154.152/29", + "20.197.204.224/28", + "20.197.205.160/27", + "20.197.205.192/26", + "20.197.206.0/26", + "20.197.206.112/28", + "20.197.206.144/28", + "20.197.206.160/27", + "20.197.206.192/28", + "20.197.206.224/27", + "20.197.207.0/27", + "20.197.207.128/26", + "20.197.207.48/28", + "20.197.207.64/26", + "20.201.127.40/29", + "20.201.50.208/28", + "20.201.75.240/28", + "20.201.76.128/27", + "20.201.76.224/28", + "20.201.77.16/28", + "20.201.78.176/28", + "20.201.78.208/28", + "20.206.144.56/29", + "20.206.205.224/28", + "20.226.136.32/29", + "20.226.153.32/28", + "20.226.154.64/29", + "20.226.179.160/28", + "20.226.186.0/29", + "20.226.204.200/29", + "20.226.205.56/29", + "20.226.220.16/28", + "20.226.221.240/28", + "20.226.222.128/27", + "20.226.222.176/28", + "20.226.222.64/26", + "20.226.223.0/27", + "20.226.223.128/27", + "20.226.223.192/26", + "20.226.223.96/27", + "20.226.232.176/29", + "20.226.233.64/29", + "20.226.235.96/27", + "20.226.236.208/28", + "20.226.237.128/28", + "20.226.239.104/29", + "20.226.240.80/28", + "20.226.241.192/28", + "20.226.242.240/28", + "20.226.243.112/28", + "20.226.243.176/28", + "20.226.243.208/28", + "74.163.205.224/28", + "74.163.206.128/27", + "74.163.206.160/28", + "74.163.206.208/28", + "74.163.207.128/26", + "74.163.207.192/28", + "74.163.207.240/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "canadacentral", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "13.71.184.74/32", + "20.220.50.240/28", + "4.150.168.160/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "canadacentral", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "13.71.168.40/29", + "130.107.132.160/28", + "130.107.132.192/28", + "130.107.132.80/28", + "130.107.132.96/28", + "130.107.133.0/28", + "130.107.133.144/28", + "130.107.133.160/28", + "130.107.133.192/27", + "130.107.134.112/28", + "130.107.134.128/28", + "130.107.134.160/27", + "130.107.134.192/28", + "130.107.134.224/27", + "130.107.134.64/28", + "130.107.135.0/26", + "130.107.135.128/28", + "130.107.135.160/28", + "130.107.135.192/26", + "130.107.135.80/28", + "130.107.135.96/28", + "20.104.3.168/29", + "20.116.153.184/29", + "20.116.157.152/29", + "20.116.195.0/28", + "20.116.195.128/28", + "20.116.197.192/27", + "20.116.197.96/27", + "20.116.198.0/28", + "20.116.198.64/27", + "20.116.202.192/26", + "20.116.247.16/29", + "20.116.247.8/29", + "20.151.145.208/29", + "20.151.153.184/29", + "20.151.34.96/29", + "20.175.131.208/28", + "20.175.132.192/28", + "20.175.132.96/29", + "20.175.145.208/28", + "20.175.147.128/27", + "20.175.147.16/28", + "20.175.147.192/26", + "20.175.148.0/26", + "20.175.148.240/28", + "20.175.149.48/28", + "20.175.149.64/27", + "20.175.150.112/28", + "20.175.150.128/28", + "20.175.150.160/27", + "20.175.150.48/28", + "20.175.150.64/28", + "20.175.182.192/26", + "20.175.183.0/25", + "20.175.184.120/29", + "20.175.189.56/29", + "20.200.94.232/29", + "20.200.95.56/29", + "4.172.46.144/28", + "4.172.46.240/28", + "4.172.47.16/28", + "4.172.5.160/27", + "4.229.241.184/29", + "4.229.241.192/29", + "4.239.251.152/29", + "4.239.251.160/29", + "4.248.199.48/28", + "40.85.218.176/29", + "40.85.223.25/32", + "40.89.16.68/32", + "52.228.105.112/28", + "52.228.106.16/28", + "52.228.116.56/29", + "52.228.98.192/28", + "52.237.62.224/28", + "52.237.63.112/28", + "52.237.63.160/28", + "52.246.152.40/29" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "canadaeast", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "13.71.184.74/32", + "20.220.99.176/28", + "4.150.168.160/28", + "40.89.16.70/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "canadaeast", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "13.71.168.40/29", + "20.151.145.208/29", + "20.151.153.184/29", + "20.151.34.96/29", + "20.175.16.0/28", + "20.175.16.144/28", + "20.175.16.48/28", + "20.175.16.64/28", + "20.175.16.96/28", + "20.175.17.0/28", + "20.175.17.128/27", + "20.175.17.64/28", + "20.175.18.32/28", + "20.175.27.0/28", + "20.175.27.128/25", + "20.175.27.80/28", + "20.175.27.96/27", + "20.175.28.0/27", + "20.175.28.128/28", + "20.175.28.48/28", + "20.175.42.160/28", + "20.175.42.96/28", + "20.200.58.152/29", + "20.200.62.168/29", + "20.200.62.48/29", + "20.220.106.48/28", + "20.220.111.176/28", + "20.220.111.32/28", + "20.220.111.64/28", + "20.220.111.96/28", + "20.220.73.112/28", + "20.220.77.32/29", + "4.229.241.184/29", + "4.229.241.192/29", + "4.229.32.176/28", + "4.229.32.224/28", + "4.229.33.144/28", + "4.229.33.176/28", + "4.229.33.192/28", + "4.229.33.224/27", + "4.229.34.0/28", + "4.229.34.160/27", + "4.229.34.192/27", + "4.229.34.32/27", + "4.229.35.0/27", + "4.229.35.128/26", + "4.229.35.208/28", + "4.229.35.224/27", + "4.229.35.48/28", + "4.229.35.80/28", + "4.229.35.96/27", + "4.229.36.0/27", + "4.229.36.160/27", + "4.229.36.192/28", + "4.229.36.224/28", + "4.229.36.32/28", + "4.229.36.64/26", + "4.229.43.160/28", + "4.229.44.128/27", + "4.229.44.192/28", + "4.229.44.224/28", + "4.229.44.48/28", + "4.229.44.64/27", + "4.229.45.128/26", + "4.229.45.192/27", + "4.229.45.240/28", + "4.229.46.0/28", + "4.229.80.24/29", + "4.229.80.48/28", + "4.229.89.40/29", + "4.239.251.152/29", + "4.239.251.160/29", + "40.69.97.8/29", + "40.85.223.25/32", + "40.86.228.200/29", + "40.89.16.68/30", + "52.229.101.104/29", + "52.229.101.64/29", + "52.229.93.96/29", + "52.229.98.248/29", + "52.246.152.40/29" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "centralindia", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "104.211.89.81/32", + "20.235.199.64/28", + "4.150.168.160/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "centralindia", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "104.211.101.14/32", + "104.211.86.40/29", + "135.235.149.240/28", + "135.235.150.160/28", + "135.235.227.240/28", + "135.235.230.128/28", + "135.235.230.208/28", + "135.235.230.224/28", + "135.235.231.0/28", + "135.235.231.128/27", + "135.235.231.160/28", + "135.235.231.192/28", + "135.235.231.224/27", + "135.235.231.48/28", + "135.235.231.80/28", + "135.235.231.96/27", + "20.192.96.40/29", + "20.198.25.0/29", + "20.198.9.224/29", + "20.207.73.128/29", + "20.207.73.208/29", + "20.207.92.176/29", + "20.207.93.16/29", + "20.219.203.64/29", + "20.219.204.128/29", + "20.219.229.240/29", + "20.219.229.48/28", + "20.219.237.192/29", + "20.219.237.216/29", + "20.235.224.208/28", + "20.235.226.208/28", + "20.235.227.128/28", + "20.235.227.160/27", + "20.235.227.208/28", + "20.235.227.224/27", + "20.235.227.64/28", + "20.235.227.96/28", + "20.235.228.144/28", + "20.235.228.160/28", + "20.235.228.208/28", + "20.235.228.224/27", + "20.235.228.32/27", + "20.235.228.96/28", + "20.235.229.0/28", + "20.235.229.128/27", + "20.235.229.176/28", + "20.235.229.192/26", + "20.235.229.48/28", + "20.235.229.64/26", + "20.235.230.0/28", + "20.235.230.112/28", + "20.235.230.128/26", + "20.235.230.192/27", + "20.235.230.48/28", + "20.235.230.64/27", + "20.244.88.56/29", + "4.224.103.112/28", + "4.224.103.144/28", + "4.224.103.240/28", + "4.224.138.96/28", + "4.224.14.0/27", + "4.224.8.64/27", + "4.224.8.96/28", + "4.224.92.128/26", + "4.224.92.240/28", + "4.224.92.32/27", + "4.224.93.240/28", + "4.224.93.80/28", + "4.224.94.32/28", + "4.224.94.64/28", + "40.80.55.104/29", + "40.80.78.128/29", + "98.70.75.40/29", + "98.70.76.16/29", + "98.70.91.64/29" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "centralus", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "20.37.156.209/32", + "4.150.168.160/28", + "4.249.192.240/28", + "40.70.58.221/32", + "52.254.24.96/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "centralus", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "104.208.18.136/29", + "13.86.56.40/29", + "172.173.10.120/29", + "172.202.121.240/29", + "20.109.205.152/29", + "20.109.228.8/29", + "20.12.135.0/28", + "20.12.135.128/28", + "20.12.166.160/28", + "20.12.167.192/28", + "20.12.167.224/28", + "20.15.235.192/29", + "20.161.68.200/29", + "20.161.68.208/29", + "20.161.81.88/29", + "20.161.82.48/29", + "20.186.233.208/29", + "20.221.17.144/28", + "20.221.18.208/28", + "20.221.19.16/28", + "20.221.19.96/28", + "20.236.221.192/27", + "20.236.222.16/28", + "20.236.223.16/28", + "20.236.223.32/28", + "20.236.223.80/28", + "20.36.151.208/28", + "20.37.156.208/32", + "20.65.4.240/28", + "20.80.123.112/28", + "20.80.123.160/28", + "20.80.123.224/27", + "20.80.124.80/28", + "20.83.19.192/26", + "20.83.2.112/29", + "20.83.20.0/28", + "20.83.20.112/28", + "20.83.20.64/27", + "20.98.170.0/28", + "23.101.152.95/32", + "4.150.167.208/28", + "4.150.167.224/27", + "4.150.177.120/29", + "4.249.133.96/28", + "4.249.134.64/28", + "4.249.135.0/28", + "4.249.135.240/28", + "4.249.142.160/28", + "4.249.142.192/28", + "4.249.142.64/28", + "4.249.143.0/26", + "4.249.143.128/26", + "4.249.143.224/27", + "4.249.143.80/28", + "4.249.143.96/28", + "4.249.229.208/28", + "4.249.229.224/27", + "4.249.230.0/26", + "4.249.230.128/27", + "4.249.230.96/27", + "4.249.231.64/28", + "40.70.144.208/28", + "48.214.167.160/28", + "48.214.222.144/28", + "48.214.222.176/28", + "48.214.222.192/28", + "48.214.222.64/27", + "48.214.223.0/27", + "48.214.223.128/28", + "48.214.223.176/28", + "48.214.223.224/28", + "48.214.223.32/28", + "48.214.223.80/28", + "48.214.223.96/27", + "52.154.56.64/29", + "52.158.166.8/29", + "52.158.222.240/29", + "52.165.98.248/29", + "52.180.139.48/29", + "52.182.136.200/29", + "52.182.221.176/28", + "52.182.223.16/29", + "52.185.73.192/28", + "52.189.37.0/29", + "52.189.38.88/29", + "52.189.72.160/28", + "52.189.72.32/28", + "52.189.73.16/28", + "52.228.152.176/28", + "52.228.152.48/28", + "52.228.153.32/28", + "52.228.154.112/28", + "52.228.154.32/28", + "68.154.4.136/29", + "74.249.107.232/29" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "chinaeast2", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "163.228.200.0/26", + "52.130.1.64/29", + "52.130.2.232/29" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "chinaeast3", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "163.228.32.0/26", + "52.130.1.64/32", + "52.131.144.32/29" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "chinanorth2", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "139.217.120.0/26", + "52.130.16.112/29" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "chinanorth3", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "52.130.16.113/32", + "52.130.224.0/27", + "52.131.16.32/29" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "chinanorth3", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "143.64.119.112/28", + "143.64.119.160/27", + "143.64.119.192/26", + "143.64.136.96/28", + "143.64.137.48/28", + "143.64.154.160/28", + "143.64.155.16/28", + "143.64.155.160/27", + "143.64.155.208/28", + "143.64.155.224/27", + "143.64.155.80/28", + "143.64.156.48/28", + "143.64.29.192/28", + "143.64.29.64/28", + "143.64.30.32/28", + "143.64.31.208/28", + "143.64.31.224/27", + "143.64.57.192/29", + "143.64.61.136/29", + "163.228.235.40/29" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "eastasia", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "20.189.106.192/32", + "20.239.211.144/28", + "20.247.134.0/28", + "4.150.168.160/28", + "52.187.145.107/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "eastasia", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "13.67.21.136/29", + "13.75.32.200/29", + "20.187.237.160/28", + "20.187.237.208/28", + "20.187.237.224/28", + "20.187.238.0/23", + "20.189.106.194/32", + "20.189.126.232/29", + "20.2.226.184/29", + "20.2.234.144/29", + "20.205.195.72/29", + "20.205.24.128/29", + "20.205.79.112/29", + "20.205.86.224/29", + "20.239.102.144/28", + "20.239.117.248/29", + "20.239.212.16/28", + "20.239.212.208/28", + "20.239.213.128/26", + "20.239.213.208/28", + "20.239.213.80/28", + "20.239.214.16/28", + "20.239.214.160/28", + "20.239.214.64/27", + "20.239.228.144/28", + "20.239.229.96/28", + "20.239.23.32/28", + "20.239.28.224/29", + "20.239.31.8/29", + "20.239.43.96/28", + "20.239.47.144/28", + "20.239.47.160/27", + "20.239.47.192/28", + "20.239.7.240/28", + "20.239.96.112/29", + "20.239.97.120/29", + "20.239.97.144/29", + "20.239.97.224/28", + "20.239.97.72/29", + "20.24.109.104/29", + "20.24.109.80/29", + "20.24.111.32/28", + "20.24.238.208/28", + "20.24.239.96/29", + "20.24.250.0/28", + "20.24.254.0/28", + "20.247.49.144/28", + "20.255.119.64/28", + "20.255.138.176/28", + "20.255.143.128/27", + "20.255.143.16/28", + "20.255.143.176/28", + "20.255.143.208/28", + "20.255.143.224/27", + "20.255.143.32/27", + "20.255.143.96/28", + "20.255.192.160/28", + "20.255.197.80/28", + "20.255.198.128/27", + "20.255.198.176/28", + "20.255.198.208/28", + "20.255.198.224/27", + "20.255.198.32/27", + "20.255.199.16/28", + "20.255.199.32/27", + "20.255.199.64/28", + "20.6.164.240/28", + "20.6.165.128/28", + "20.6.233.184/29", + "23.98.114.184/29", + "4.144.65.192/28", + "4.144.88.32/27", + "4.144.88.64/28", + "40.83.76.88/29", + "52.184.100.32/29", + "52.184.83.208/29", + "52.187.0.85/32", + "57.158.95.144/28", + "57.158.95.160/28", + "57.158.95.208/28", + "57.158.95.224/27", + "57.158.95.48/28", + "57.158.95.64/28", + "57.158.95.96/27", + "65.52.160.184/29" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "eastus", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "20.42.4.209/32", + "20.42.4.211/32", + "4.150.168.160/28", + "40.70.58.221/32", + "52.234.168.240/28", + "52.254.24.96/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "eastus", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "128.203.118.160/28", + "128.203.119.128/25", + "128.203.119.16/28", + "128.203.119.48/28", + "128.203.119.64/26", + "128.203.127.160/27", + "13.90.176.192/26", + "13.90.176.80/28", + "13.90.183.0/27", + "13.90.183.32/28", + "134.33.203.176/28", + "134.33.203.192/26", + "134.33.204.0/26", + "134.33.204.64/27", + "134.33.204.96/28", + "134.33.247.192/28", + "134.33.247.224/27", + "135.222.246.16/28", + "135.222.246.32/27", + "135.222.246.64/26", + "135.234.150.128/25", + "135.234.150.80/28", + "135.234.150.96/27", + "135.234.151.0/24", + "172.171.133.64/28", + "172.171.135.192/28", + "172.203.186.112/29", + "20.102.39.32/28", + "20.121.174.16/28", + "20.124.149.80/28", + "20.124.154.216/29", + "20.127.250.16/28", + "20.161.68.200/29", + "20.161.68.208/29", + "20.161.81.88/29", + "20.161.82.48/29", + "20.185.213.224/28", + "20.232.231.208/28", + "20.232.6.224/28", + "20.232.65.128/28", + "20.237.91.232/29", + "20.241.146.160/28", + "20.241.222.224/28", + "20.241.223.80/28", + "20.241.252.0/28", + "20.242.135.240/28", + "20.242.173.112/28", + "20.242.173.176/28", + "20.242.173.208/28", + "20.242.191.96/28", + "20.246.175.248/29", + "20.246.217.192/29", + "20.253.104.112/28", + "20.253.116.112/29", + "20.253.17.80/28", + "20.253.19.224/28", + "20.253.5.0/28", + "20.253.6.224/28", + "20.253.7.72/29", + "20.253.73.160/28", + "20.253.79.192/28", + "20.36.151.208/28", + "20.42.4.208/32", + "20.42.4.210/32", + "20.42.74.128/26", + "20.65.4.240/28", + "20.75.145.128/29", + "20.75.165.32/29", + "20.75.209.224/28", + "20.75.227.240/28", + "20.75.247.160/28", + "20.75.247.240/28", + "23.101.152.95/32", + "4.156.112.32/28", + "4.156.117.192/28", + "4.156.117.96/28", + "4.156.118.144/28", + "4.156.118.192/28", + "4.156.118.48/28", + "4.156.118.80/28", + "4.156.204.0/29", + "4.156.217.32/29", + "4.156.230.224/28", + "4.156.231.32/28", + "4.156.238.176/28", + "4.156.238.240/28", + "4.156.39.224/28", + "4.156.39.96/28", + "4.156.49.160/28", + "4.156.7.64/28", + "4.156.95.144/28", + "4.156.95.224/27", + "4.157.140.48/29", + "4.157.183.88/29", + "4.157.39.224/28", + "4.157.5.32/27", + "4.157.7.0/28", + "4.157.7.208/28", + "4.157.7.240/28", + "4.236.207.176/28", + "4.236.210.48/28", + "4.246.239.192/29", + "4.255.39.160/27", + "4.255.39.64/28", + "40.70.144.208/28", + "48.194.119.176/28", + "48.194.22.0/27", + "48.194.22.112/28", + "48.194.22.192/26", + "48.194.23.0/24", + "48.194.76.208/28", + "48.194.76.224/27", + "48.194.77.0/26", + "48.194.77.64/28", + "52.188.137.16/28", + "52.188.31.192/29", + "52.190.25.240/29", + "52.224.142.160/28", + "52.224.200.224/27", + "52.226.142.208/28", + "52.234.162.24/29", + "52.234.167.0/24", + "52.255.214.224/28", + "52.255.214.64/28", + "52.255.219.176/28", + "52.255.219.192/28", + "52.255.219.224/28", + "52.255.220.32/28", + "52.255.230.144/28", + "57.151.106.192/29", + "57.151.124.56/29", + "57.151.124.96/29", + "57.151.46.0/28", + "57.151.82.88/29", + "57.151.84.240/29", + "68.154.4.136/29", + "68.220.90.240/28", + "74.249.107.232/29" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "eastus2", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "20.41.4.113/32", + "20.41.4.116/32", + "4.150.168.160/28", + "40.70.58.221/32", + "52.254.24.96/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "eastus2", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "104.209.152.56/29", + "130.213.175.96/28", + "132.196.218.192/28", + "132.196.218.224/27", + "132.196.219.176/28", + "132.196.219.192/28", + "132.196.219.48/28", + "132.196.219.64/28", + "132.196.219.96/27", + "132.196.220.128/25", + "132.196.221.0/26", + "132.196.221.112/28", + "132.196.221.128/26", + "132.196.221.224/27", + "132.196.222.0/24", + "132.196.223.0/27", + "132.196.228.128/28", + "132.196.228.160/27", + "132.196.229.48/28", + "132.196.229.96/28", + "135.222.150.192/26", + "135.222.151.0/27", + "135.224.214.16/28", + "135.224.215.0/28", + "172.193.61.176/28", + "20.1.215.208/28", + "20.10.113.160/28", + "20.10.215.64/28", + "20.10.237.240/28", + "20.10.238.80/28", + "20.10.239.112/28", + "20.10.77.160/28", + "20.10.78.16/28", + "20.10.78.176/28", + "20.10.92.192/29", + "20.114.219.168/29", + "20.12.118.104/29", + "20.12.122.112/28", + "20.12.127.0/28", + "20.15.63.224/27", + "20.15.69.224/27", + "20.15.70.0/24", + "20.15.71.0/26", + "20.15.71.64/27", + "20.161.68.200/29", + "20.161.68.208/28", + "20.161.68.224/29", + "20.161.81.88/29", + "20.161.82.48/28", + "20.161.82.64/29", + "20.22.109.176/29", + "20.22.176.208/28", + "20.22.77.112/28", + "20.22.77.128/28", + "20.22.77.64/28", + "20.22.9.128/28", + "20.22.9.224/28", + "20.22.9.48/28", + "20.22.9.80/28", + "20.230.13.80/29", + "20.230.8.0/29", + "20.36.151.208/28", + "20.41.4.112/32", + "20.41.4.114/32", + "20.65.4.240/28", + "20.7.100.192/29", + "20.7.243.128/28", + "20.7.251.128/28", + "20.7.81.64/28", + "20.85.93.96/28", + "20.94.104.128/28", + "20.94.104.80/28", + "20.94.106.48/28", + "20.94.107.128/28", + "20.94.15.0/28", + "20.94.7.176/28", + "20.94.7.64/27", + "20.96.137.128/28", + "20.96.138.160/29", + "20.96.222.152/29", + "23.101.152.95/32", + "23.101.157.168/29", + "4.152.129.64/28", + "4.152.181.128/28", + "4.152.181.80/28", + "4.152.181.96/28", + "4.152.226.32/27", + "4.152.227.128/27", + "4.152.227.160/28", + "4.152.227.64/28", + "4.152.23.48/29", + "4.152.245.64/28", + "4.152.43.16/28", + "4.152.44.80/28", + "4.152.45.176/29", + "4.152.55.176/28", + "4.153.101.160/28", + "40.70.144.208/28", + "48.211.254.208/28", + "48.211.255.240/28", + "48.211.255.32/28", + "52.242.93.80/29", + "68.154.4.136/29", + "68.220.135.240/28", + "68.220.220.224/28", + "68.220.221.16/28", + "68.220.221.32/27", + "68.220.221.64/27", + "68.220.221.96/28", + "68.220.29.128/25", + "68.220.29.96/27", + "68.220.30.0/24", + "68.220.31.0/26", + "68.220.31.64/27", + "74.249.107.232/29", + "74.249.108.120/29", + "74.249.108.56/29" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "francecentral", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "20.19.113.192/28", + "4.150.168.160/28", + "40.89.168.225/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "francecentral", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "20.19.102.216/29", + "20.19.103.168/29", + "20.19.15.8/29", + "20.19.197.128/28", + "20.19.197.176/28", + "20.19.197.208/28", + "20.19.197.224/27", + "20.19.197.64/27", + "20.19.198.128/25", + "20.19.198.32/27", + "20.19.198.64/26", + "20.19.199.0/24", + "20.19.207.128/27", + "20.19.207.240/28", + "20.19.207.48/28", + "20.19.220.40/29", + "20.19.34.168/29", + "20.19.35.8/29", + "20.19.60.120/29", + "20.19.69.0/28", + "20.19.70.16/28", + "20.19.71.128/28", + "20.19.71.160/28", + "20.19.71.192/28", + "20.19.71.32/28", + "20.19.71.96/28", + "20.216.210.112/28", + "20.216.214.32/28", + "20.216.221.144/28", + "20.216.222.16/28", + "20.216.222.192/28", + "20.40.129.80/29", + "20.74.111.24/29", + "20.74.123.112/28", + "20.74.124.0/28", + "20.74.124.96/27", + "4.178.122.232/29", + "4.178.251.144/28", + "4.178.251.192/28", + "4.178.251.224/27", + "4.178.252.64/28", + "4.233.152.16/29", + "4.233.185.56/29", + "4.233.193.64/29", + "40.79.136.40/29", + "40.89.171.101/32", + "51.103.9.176/29", + "51.103.9.200/29", + "51.11.194.112/29", + "51.11.200.176/28", + "51.11.201.128/27", + "51.11.201.160/28", + "51.11.201.80/28", + "51.11.201.96/27", + "51.11.204.160/27", + "51.11.205.112/28", + "51.11.205.16/28", + "51.11.207.128/28", + "51.11.207.192/27", + "51.11.207.80/28", + "51.11.207.96/27", + "51.11.234.232/29", + "51.11.239.192/28", + "98.66.170.152/29" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "germanywestcentral", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "20.52.93.41/32", + "4.150.168.160/28", + "98.67.225.0/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "germanywestcentral", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "131.189.129.176/28", + "131.189.129.192/26", + "131.189.155.128/25", + "131.189.156.0/26", + "131.189.234.112/28", + "131.189.234.160/28", + "20.113.100.224/29", + "20.170.105.112/28", + "20.170.105.128/27", + "20.170.105.160/28", + "20.170.107.144/28", + "20.170.110.0/25", + "20.170.110.176/28", + "20.170.111.0/25", + "20.170.111.128/26", + "20.170.111.192/27", + "20.170.111.240/28", + "20.170.56.16/29", + "20.170.93.128/28", + "20.170.93.192/28", + "20.170.94.128/27", + "20.170.94.16/28", + "20.170.94.160/28", + "20.170.94.32/28", + "20.170.94.80/28", + "20.170.94.96/27", + "20.218.169.40/29", + "20.218.169.48/29", + "20.52.65.200/29", + "20.52.93.42/32", + "20.79.123.48/28", + "20.79.123.96/28", + "20.79.144.104/29", + "20.79.144.144/28", + "4.185.248.16/29", + "51.116.120.96/28", + "9.141.186.192/28", + "9.141.186.224/28", + "98.67.155.0/29", + "98.67.155.40/29", + "98.67.157.224/28", + "98.67.158.0/28", + "98.67.158.128/28", + "98.67.159.128/28", + "98.67.159.16/28", + "98.67.159.240/28", + "98.67.159.32/28", + "98.67.159.80/28", + "98.67.159.96/27", + "98.67.186.32/28", + "98.67.230.40/29", + "98.67.230.88/29", + "98.67.231.136/29", + "98.67.231.24/29" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "japaneast", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "4.150.168.160/28", + "4.189.194.16/28", + "52.246.160.72/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "japaneast", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "13.78.104.40/29", + "13.78.19.235/32", + "135.149.26.240/28", + "135.149.26.32/28", + "135.149.28.128/27", + "135.149.28.160/28", + "135.149.28.192/28", + "135.149.28.64/28", + "135.149.28.96/28", + "135.149.29.48/28", + "135.149.29.96/28", + "135.149.30.16/28", + "135.149.30.176/28", + "135.149.30.192/28", + "135.149.31.0/28", + "135.149.31.32/28", + "135.149.36.0/28", + "135.149.36.96/28", + "135.149.37.144/28", + "135.149.37.208/28", + "135.149.37.240/28", + "135.149.37.64/28", + "135.149.38.0/27", + "20.191.170.16/29", + "20.194.131.88/29", + "20.210.194.80/29", + "20.210.195.88/29", + "20.222.130.40/29", + "20.222.179.176/29", + "20.243.34.72/29", + "20.27.133.88/29", + "20.27.135.216/29", + "20.27.147.208/28", + "20.27.148.128/28", + "20.27.148.16/28", + "20.27.148.176/28", + "20.27.148.64/27", + "20.27.148.96/28", + "20.27.149.0/28", + "20.27.149.144/28", + "20.27.149.80/28", + "20.27.149.96/27", + "20.27.158.192/28", + "20.27.158.224/27", + "20.27.159.0/28", + "20.27.159.160/28", + "20.27.159.192/27", + "20.27.159.32/28", + "20.27.159.80/28", + "20.27.191.32/27", + "20.40.91.88/29", + "20.63.131.0/28", + "20.63.131.144/29", + "20.78.119.96/28", + "20.78.224.48/28", + "20.78.227.144/28", + "20.78.228.32/28", + "20.78.228.96/28", + "20.78.229.240/28", + "20.78.229.32/28", + "20.78.230.48/28", + "20.78.231.16/28", + "20.78.231.208/28", + "20.78.231.80/28", + "4.189.30.112/28", + "4.189.30.176/28", + "4.189.30.240/28", + "4.189.50.112/28", + "4.189.50.176/28", + "4.189.51.128/27", + "4.189.58.144/28", + "4.189.58.80/28", + "4.189.59.160/28", + "4.189.59.192/27", + "4.189.59.32/28", + "4.216.211.0/29", + "4.241.144.24/29", + "4.241.158.0/28", + "4.241.158.32/28", + "4.241.159.128/28", + "4.241.159.160/28", + "4.241.22.160/28", + "4.241.23.160/28", + "4.241.4.80/29", + "52.155.119.80/28", + "52.156.41.128/29", + "52.156.51.216/29", + "52.185.176.16/28", + "52.185.177.0/28", + "52.185.177.64/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "japanwest", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "138.91.16.64/28", + "4.150.168.160/28", + "52.246.160.72/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "japanwest", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "13.78.104.40/29", + "13.78.19.235/32", + "20.18.183.104/30", + "20.194.131.88/29", + "20.210.194.80/29", + "20.210.195.88/29", + "20.222.130.40/29", + "20.222.179.176/29", + "20.243.34.72/29", + "20.40.91.88/29", + "4.190.147.160/30", + "4.216.211.0/29", + "40.80.182.112/30" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "koreacentral", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "20.214.117.160/28", + "4.150.168.160/28", + "52.141.22.164/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "koreacentral", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "20.196.229.16/28", + "20.196.229.192/26", + "20.196.229.32/27", + "20.196.244.112/28", + "20.196.254.136/29", + "20.196.255.0/29", + "20.196.255.24/29", + "20.200.240.80/29", + "20.200.241.104/29", + "20.200.244.0/29", + "20.200.245.168/29", + "20.200.247.40/29", + "20.200.249.144/28", + "20.200.249.16/28", + "20.200.249.208/28", + "20.200.250.128/28", + "20.200.251.0/26", + "20.200.251.160/28", + "20.200.251.224/28", + "20.200.251.64/28", + "20.200.252.0/27", + "20.200.252.160/28", + "20.200.254.224/28", + "20.214.101.144/28", + "20.214.102.0/26", + "20.214.102.160/27", + "20.214.102.224/27", + "20.214.102.64/27", + "20.214.103.0/28", + "20.214.103.128/28", + "20.214.103.160/28", + "20.214.103.192/27", + "20.214.103.32/27", + "20.214.103.64/27", + "20.214.103.96/28", + "20.214.115.176/28", + "20.214.118.112/28", + "20.214.218.232/29", + "20.214.219.80/29", + "20.214.80.0/28", + "20.214.83.16/28", + "20.214.91.48/28", + "20.214.92.0/28", + "20.214.92.208/28", + "20.214.93.0/28", + "20.214.93.128/28", + "20.214.97.160/27", + "20.214.97.192/28", + "20.249.52.0/28", + "20.249.52.240/28", + "20.249.52.48/28", + "20.249.53.0/27", + "20.249.53.144/28", + "20.249.53.192/28", + "20.249.53.224/27", + "20.249.53.32/28", + "20.249.53.64/26", + "20.249.54.0/28", + "20.249.54.32/28", + "20.39.198.216/29", + "20.39.199.24/29", + "20.41.105.232/29", + "20.41.120.112/29", + "4.218.120.24/29", + "4.230.108.128/26", + "4.230.108.192/28", + "4.230.55.144/28", + "4.230.55.160/27", + "4.230.55.192/27", + "4.230.55.224/28", + "4.230.86.192/28", + "4.230.87.16/28", + "4.230.87.32/27", + "4.230.87.64/28", + "52.141.26.120/29", + "52.141.26.136/29", + "52.141.6.181/32", + "52.231.56.72/29", + "74.227.136.168/29" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "mexicocentral", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "158.23.42.112/28", + "158.23.96.34/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "mexicocentral", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "158.23.11.224/29", + "158.23.125.176/29", + "158.23.16.128/29", + "158.23.16.168/29", + "158.23.17.48/28", + "158.23.17.80/28", + "158.23.197.176/29", + "158.23.24.176/29", + "158.23.25.240/29", + "158.23.26.48/28", + "158.23.96.32/32", + "68.155.141.16/28", + "68.155.168.0/26", + "68.155.168.160/27", + "68.155.168.192/26", + "68.155.168.64/27", + "68.155.169.0/27", + "68.155.91.144/28", + "68.155.91.160/27", + "68.155.91.192/26", + "68.155.91.64/27", + "68.155.92.0/22" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "northcentralus", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "172.214.168.112/28", + "4.150.168.160/28", + "40.70.58.221/32", + "40.80.188.0/32", + "52.254.24.96/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "northcentralus", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "135.232.159.16/28", + "135.232.159.32/29", + "135.232.171.192/26", + "172.183.130.144/28", + "172.183.130.224/28", + "172.183.130.80/28", + "172.183.131.48/28", + "172.183.134.0/28", + "172.183.134.192/27", + "172.183.134.240/28", + "172.183.135.16/28", + "172.183.135.32/28", + "172.183.39.192/28", + "172.183.53.144/28", + "172.183.53.160/28", + "172.183.54.0/27", + "172.183.56.32/29", + "172.183.73.8/29", + "172.183.74.16/29", + "172.183.80.240/29", + "172.183.84.0/29", + "172.183.88.0/28", + "172.183.88.32/28", + "172.183.89.0/28", + "172.183.89.240/28", + "172.183.90.16/28", + "172.183.90.240/28", + "172.183.91.16/28", + "172.183.91.176/28", + "20.102.194.64/28", + "20.102.196.144/28", + "20.102.197.0/28", + "20.102.197.32/28", + "20.102.197.80/28", + "20.102.212.160/28", + "20.102.216.144/28", + "20.102.217.16/28", + "20.102.218.224/28", + "20.102.219.224/28", + "20.102.220.176/28", + "20.102.220.192/28", + "20.102.223.160/28", + "20.102.223.208/28", + "20.125.222.168/29", + "20.161.68.200/29", + "20.161.68.208/29", + "20.161.81.88/29", + "20.161.82.48/29", + "20.36.151.208/28", + "20.65.4.240/28", + "20.98.18.192/28", + "20.98.35.224/28", + "20.98.39.80/28", + "20.98.62.80/28", + "20.98.63.224/28", + "23.101.152.95/32", + "40.116.77.224/28", + "40.116.78.192/28", + "40.116.78.48/28", + "40.116.79.32/28", + "40.116.81.168/29", + "40.116.84.80/29", + "40.116.85.128/28", + "40.116.88.80/28", + "40.116.89.192/28", + "40.116.90.192/27", + "40.116.91.240/28", + "40.116.92.128/26", + "40.116.92.192/28", + "40.116.92.240/28", + "40.116.92.64/28", + "40.116.92.96/28", + "40.116.93.0/28", + "40.116.93.112/28", + "40.116.93.128/28", + "40.116.93.208/28", + "40.116.93.224/27", + "40.116.93.64/28", + "40.116.94.0/28", + "40.116.94.64/28", + "40.70.144.208/28", + "40.80.188.0/28", + "52.162.101.224/28", + "52.162.101.80/28", + "52.162.197.32/28", + "52.162.99.224/28", + "52.240.210.16/28", + "68.154.4.136/29", + "74.249.107.232/29" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "northeurope", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "20.103.219.240/28", + "20.38.84.81/32", + "4.150.168.160/28", + "4.209.165.0/28", + "52.232.19.246/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "northeurope", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "104.40.169.48/28", + "108.143.178.64/28", + "13.74.105.200/29", + "13.74.203.144/29", + "172.201.244.200/29", + "172.201.83.192/29", + "172.205.204.120/29", + "172.211.2.248/29", + "172.211.58.192/29", + "172.211.67.168/29", + "20.105.102.208/29", + "20.105.119.176/28", + "20.105.4.176/28", + "20.105.4.192/28", + "20.105.5.128/27", + "20.105.5.176/28", + "20.105.5.32/27", + "20.105.5.96/28", + "20.105.59.208/28", + "20.105.91.32/28", + "20.105.93.224/29", + "20.107.141.80/28", + "20.107.142.128/27", + "20.107.142.176/28", + "20.107.142.208/28", + "20.107.143.0/27", + "20.107.143.176/28", + "20.107.143.240/28", + "20.107.143.96/27", + "20.123.51.88/29", + "20.13.189.128/27", + "20.13.189.160/28", + "20.13.189.192/26", + "20.13.190.64/28", + "20.13.229.0/28", + "20.13.244.128/28", + "20.13.244.208/28", + "20.13.245.176/28", + "20.13.245.192/28", + "20.13.245.224/27", + "20.13.245.48/28", + "20.13.245.96/28", + "20.13.246.128/26", + "20.166.140.176/29", + "20.166.180.216/29", + "20.166.210.192/29", + "20.166.215.160/27", + "20.166.215.192/27", + "20.166.231.176/28", + "20.191.63.176/28", + "20.223.126.224/28", + "20.223.74.224/28", + "20.223.88.192/28", + "20.223.94.224/28", + "20.238.4.160/29", + "20.38.84.80/32", + "20.50.206.192/28", + "20.50.86.16/29", + "20.54.27.128/28", + "20.67.147.192/28", + "20.67.171.224/28", + "20.82.196.96/28", + "20.93.108.128/28", + "20.93.44.128/28", + "20.93.44.224/28", + "20.93.44.48/28", + "20.93.59.224/28", + "20.93.94.128/27", + "20.93.94.192/28", + "20.93.94.240/28", + "20.93.95.112/28", + "20.93.95.16/28", + "20.93.95.208/28", + "20.93.95.240/28", + "20.93.95.32/27", + "20.93.95.64/27", + "20.93.99.16/28", + "23.100.0.135/32", + "4.207.218.112/28", + "4.207.219.0/28", + "4.207.219.192/28", + "4.207.220.0/28", + "4.207.82.224/29", + "4.208.1.56/29", + "4.208.2.152/29", + "4.208.42.0/28", + "4.208.44.112/28", + "4.208.44.128/27", + "4.208.44.176/28", + "4.208.46.160/27", + "4.208.46.192/28", + "4.208.46.240/28", + "4.208.46.64/27", + "4.208.47.0/27", + "4.208.47.128/28", + "4.208.47.192/28", + "4.208.47.48/28", + "4.208.47.64/28", + "4.208.50.96/28", + "4.209.221.64/28", + "4.210.62.208/28", + "4.210.62.224/27", + "4.210.63.0/26", + "4.210.63.64/27", + "4.210.63.96/28", + "4.231.146.240/28", + "4.231.147.176/28", + "4.231.147.224/27", + "4.231.148.224/28", + "4.231.148.80/28", + "4.231.148.96/27", + "4.231.149.176/28", + "4.231.149.32/27", + "4.231.150.0/27", + "4.231.150.128/28", + "4.231.150.240/28", + "4.231.150.48/28", + "4.231.150.96/27", + "4.231.151.16/28", + "4.231.159.176/28", + "4.245.219.224/29", + "4.245.227.208/29", + "51.138.238.0/28", + "52.146.157.128/28", + "52.155.175.32/28", + "52.236.10.192/28", + "52.236.11.208/29", + "52.236.21.160/27", + "52.236.22.32/27", + "52.236.22.64/27", + "52.236.23.192/28", + "52.236.23.240/28", + "52.236.23.64/27", + "52.236.31.192/28", + "68.219.139.128/25", + "68.219.252.224/29", + "68.219.4.64/28", + "74.234.43.80/29", + "98.71.25.152/29" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "norwayeast", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "20.100.214.208/28", + "4.150.168.160/28", + "51.120.40.120/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "norwayeast", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "131.163.18.160/27", + "131.163.18.192/26", + "131.163.19.0/27", + "131.163.19.128/25", + "131.163.19.64/26", + "131.163.20.0/25", + "131.163.20.128/26", + "131.163.20.192/28", + "20.100.142.192/28", + "20.100.143.128/28", + "20.100.154.0/27", + "20.100.155.208/28", + "20.100.155.240/28", + "20.100.156.0/27", + "20.100.156.160/27", + "20.100.156.192/28", + "20.100.156.48/28", + "20.100.156.80/28", + "20.100.157.0/26", + "20.100.157.240/28", + "20.100.157.64/27", + "20.100.158.128/26", + "20.100.158.16/28", + "20.100.158.64/27", + "20.100.159.144/28", + "20.100.159.160/27", + "20.100.159.224/27", + "20.100.159.64/26", + "20.100.223.144/28", + "20.100.232.160/28", + "20.100.62.176/28", + "20.100.62.80/28", + "20.100.62.96/27", + "20.100.63.224/28", + "20.100.63.64/26", + "20.251.169.232/29", + "20.251.224.40/29", + "4.219.216.0/29", + "4.220.16.128/26", + "4.220.16.64/26", + "4.235.113.232/29", + "51.120.246.120/29", + "51.120.246.96/29", + "51.120.40.121/32", + "51.120.8.208/29", + "51.120.8.32/29", + "51.120.89.104/29", + "51.120.92.136/29", + "51.120.93.232/29", + "51.120.95.112/29", + "51.13.3.24/29", + "51.13.64.104/29", + "51.13.65.144/29", + "51.13.65.40/29", + "51.13.65.64/29", + "51.13.67.72/29", + "51.13.68.176/29" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "qatarcentral", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "20.173.17.128/28", + "20.21.32.32/32", + "4.150.168.160/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "qatarcentral", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "20.173.105.232/29", + "20.173.105.240/29", + "20.173.50.40/29", + "20.173.50.48/29", + "20.173.97.224/29", + "20.21.129.232/29", + "20.21.32.34/32", + "20.21.70.224/29", + "20.21.78.112/29", + "4.244.16.8/29" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "southafricanorth", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "102.133.224.24/32", + "20.87.238.224/28", + "4.150.168.160/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "southafricanorth", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "102.133.255.120/29", + "102.37.214.112/29", + "102.37.214.88/29", + "102.37.73.120/29", + "20.164.108.240/28", + "20.164.109.160/27", + "20.164.109.192/26", + "20.164.109.64/28", + "20.164.110.0/27", + "20.164.16.120/29", + "20.164.16.48/29", + "20.164.200.120/29", + "20.164.24.24/29", + "20.164.33.184/29", + "20.164.34.56/29", + "20.164.34.64/29", + "20.164.83.192/26", + "20.164.83.64/26", + "20.164.84.128/27", + "20.164.84.224/28", + "20.164.84.64/26", + "20.164.85.128/26", + "20.164.86.16/28", + "20.164.86.160/27", + "20.164.86.192/27", + "20.164.86.32/28", + "20.164.87.0/28", + "20.164.87.128/25", + "20.164.87.64/26", + "20.87.117.0/27", + "20.87.117.112/28", + "20.87.117.160/27", + "20.87.117.64/28", + "20.87.118.16/28", + "20.87.118.64/28", + "20.87.119.16/28", + "20.87.123.192/27", + "20.87.124.144/28", + "20.87.124.160/27", + "20.87.124.224/28", + "20.87.125.64/26", + "20.87.126.192/26", + "20.87.126.64/28", + "20.87.127.16/28", + "20.87.220.0/29", + "20.87.220.152/29", + "20.87.220.224/29", + "20.87.221.56/29", + "20.87.226.48/28", + "20.87.230.48/28", + "20.87.235.0/28", + "20.87.235.32/27", + "20.87.250.176/28", + "20.87.250.64/28", + "20.87.251.0/28", + "20.87.251.96/28", + "20.87.253.240/28", + "20.87.254.0/28", + "20.87.254.208/28", + "20.87.255.144/28", + "20.87.255.16/28", + "20.87.94.16/28", + "40.123.251.136/29", + "40.123.253.80/29", + "40.127.5.82/32", + "40.127.8.136/29", + "40.127.8.48/29" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "southcentralus", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "13.91.180.32/28", + "4.150.168.160/28", + "40.118.174.12/32", + "40.119.9.208/32", + "52.185.215.96/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "southcentralus", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "13.66.81.0/29", + "135.233.173.112/28", + "135.233.174.208/28", + "135.233.175.112/28", + "135.233.175.128/27", + "135.233.246.144/28", + "135.233.246.192/27", + "135.233.247.176/28", + "135.233.254.128/25", + "135.233.254.80/28", + "135.233.255.0/24", + "172.178.240.192/26", + "172.178.242.0/25", + "172.202.157.208/28", + "172.202.157.224/28", + "172.202.158.176/28", + "172.202.158.192/27", + "172.202.158.224/28", + "172.202.189.224/28", + "172.202.190.16/28", + "172.202.190.64/27", + "172.202.190.96/28", + "172.202.237.128/28", + "172.202.237.160/28", + "172.202.255.128/28", + "172.202.255.160/27", + "172.202.255.192/26", + "172.202.255.32/28", + "172.206.132.32/27", + "172.206.156.208/28", + "172.206.187.240/28", + "172.206.188.96/28", + "20.118.64.240/29", + "20.165.0.176/29", + "20.236.165.128/28", + "20.236.165.96/28", + "20.236.183.16/28", + "20.65.137.224/29", + "20.88.199.160/29", + "20.88.199.184/29", + "20.88.253.112/28", + "20.94.184.88/29", + "20.97.109.4/30", + "20.97.87.112/28", + "4.149.107.24/29", + "4.149.98.120/29", + "4.151.11.48/29", + "4.151.254.176/28", + "4.151.255.224/27", + "4.151.27.160/28", + "40.119.9.209/32", + "40.124.140.48/29", + "40.124.70.8/29", + "40.82.248.112/28", + "40.83.178.242/32", + "52.153.219.224/28", + "52.153.221.16/28", + "52.153.221.48/28", + "52.153.221.64/26", + "52.153.223.200/29", + "52.157.9.208/28", + "52.171.120.80/28", + "52.183.227.160/28", + "52.183.227.192/28", + "52.183.227.240/28", + "52.183.228.160/28", + "52.185.208.240/29", + "52.185.215.96/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "southeastasia", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "20.247.134.0/28", + "4.150.168.160/28", + "52.187.145.107/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "southeastasia", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "104.43.103.128/28", + "104.43.103.208/28", + "13.67.21.136/29", + "135.171.12.144/28", + "135.171.12.192/28", + "135.171.12.64/27", + "135.171.29.176/28", + "135.171.29.224/28", + "135.171.30.128/26", + "135.171.30.240/28", + "135.171.30.96/28", + "135.171.31.0/27", + "135.171.31.112/28", + "135.171.31.128/27", + "135.171.31.160/28", + "135.171.31.192/28", + "135.171.31.224/27", + "172.188.123.176/29", + "172.188.66.64/29", + "20.198.157.112/29", + "20.205.195.72/29", + "20.205.241.104/29", + "20.205.243.240/29", + "20.212.92.0/29", + "20.24.135.232/29", + "20.24.135.40/29", + "20.247.133.192/28", + "20.247.134.16/28", + "20.247.134.80/28", + "20.247.135.32/28", + "20.247.198.208/28", + "20.247.198.64/28", + "20.247.199.0/28", + "20.247.199.48/28", + "20.247.199.80/28", + "20.247.199.96/28", + "20.247.243.160/27", + "20.247.243.192/27", + "20.247.244.224/27", + "20.6.3.224/29", + "20.6.34.248/29", + "20.6.5.40/29", + "20.6.82.208/29", + "20.6.83.136/29", + "23.98.114.184/29", + "4.144.182.128/28", + "4.144.182.176/28", + "4.144.182.192/26", + "4.144.183.0/28", + "4.144.187.112/28", + "4.144.187.128/28", + "4.144.187.160/28", + "4.144.187.48/28", + "4.144.187.64/27", + "4.144.194.112/28", + "4.144.194.160/28", + "4.144.204.16/28", + "4.144.204.176/28", + "4.144.204.224/28", + "4.144.204.96/28", + "4.144.205.128/27", + "4.144.205.192/26", + "4.144.205.64/26", + "4.144.206.16/28", + "4.144.206.32/27", + "4.144.206.64/28", + "40.119.228.16/29", + "40.119.247.224/29", + "52.187.0.85/32", + "52.237.98.24/29" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "southindia", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "104.211.89.81/32", + "4.150.168.160/28", + "52.140.35.224/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "southindia", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "104.211.101.14/32", + "104.211.86.40/29", + "20.192.96.40/29", + "20.198.25.0/29", + "20.198.9.224/29", + "20.244.88.56/29", + "20.41.192.68/30", + "40.80.55.104/29", + "74.224.66.24/29", + "74.224.79.176/28", + "98.70.75.40/29", + "98.70.76.16/29", + "98.70.91.64/29" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "swedencentral", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "4.150.168.160/28", + "4.225.21.224/28", + "51.12.41.16/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "swedencentral", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "135.225.228.176/28", + "135.225.228.192/28", + "172.160.244.40/29", + "20.240.168.160/29", + "20.240.168.208/29", + "20.240.168.240/29", + "20.240.203.248/29", + "20.240.218.136/29", + "20.91.166.208/28", + "20.91.167.16/28", + "4.223.248.0/29", + "4.225.10.112/29", + "4.225.10.16/28", + "4.225.10.32/29", + "4.225.209.208/29", + "4.225.209.248/29", + "4.225.6.56/29", + "51.12.145.96/27", + "51.12.147.176/28", + "51.12.147.192/28", + "51.12.147.224/28", + "51.12.147.32/28", + "51.12.147.64/28", + "51.12.148.0/26", + "51.12.148.128/27", + "51.12.148.160/28", + "51.12.156.64/28", + "51.12.157.112/28", + "51.12.158.128/28", + "51.12.158.192/28", + "51.12.159.176/28", + "51.12.159.64/28", + "51.12.231.104/29", + "51.12.250.248/29", + "51.12.251.232/29", + "51.12.33.200/29", + "51.12.41.17/32", + "51.12.59.200/29", + "74.241.219.128/28", + "74.241.219.80/28", + "74.241.219.96/27", + "74.241.220.208/28", + "74.241.220.224/27", + "74.241.221.0/28", + "9.223.111.128/28", + "9.223.111.160/28", + "9.223.111.192/26", + "9.223.111.96/27", + "9.223.228.208/28", + "9.223.228.240/28", + "9.223.229.0/24", + "9.223.230.0/24", + "9.223.231.0/26", + "9.223.231.64/27" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "switzerlandnorth", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "20.208.63.112/28", + "4.150.168.160/28", + "51.107.48.120/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "switzerlandnorth", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "20.203.198.184/29", + "20.203.214.200/29", + "20.203.218.16/29", + "20.208.22.136/29", + "20.208.50.96/28", + "20.208.55.128/28", + "20.208.55.96/27", + "20.250.144.32/29", + "20.250.160.184/29", + "20.250.29.144/29", + "20.250.36.80/29", + "20.250.37.112/29", + "20.250.92.128/26", + "20.250.92.192/27", + "20.250.92.224/28", + "20.250.92.96/28", + "20.250.98.144/28", + "20.250.98.160/27", + "20.250.98.192/26", + "20.250.99.0/28", + "51.103.129.136/29", + "51.103.129.192/29", + "51.103.130.40/29", + "51.103.130.88/29", + "51.103.206.96/29", + "51.103.214.248/29", + "51.107.12.208/28", + "51.107.131.80/29", + "51.107.48.121/32", + "74.242.170.224/29" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "switzerlandwest", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "20.199.198.240/28", + "4.150.168.160/28", + "51.107.144.68/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "switzerlandwest", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "20.199.199.32/28", + "51.107.144.68/30", + "74.242.58.128/27", + "74.242.58.160/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "uaenorth", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "20.233.156.224/28", + "4.150.168.160/28", + "40.123.212.253/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "uaenorth", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "20.174.162.24/29", + "20.174.162.32/29", + "20.174.35.32/28", + "20.203.38.48/29", + "20.203.41.32/27", + "20.233.101.32/28", + "20.233.109.128/28", + "20.233.109.160/27", + "20.233.110.16/28", + "20.233.111.64/26", + "20.233.116.192/28", + "20.233.122.32/28", + "20.233.136.176/28", + "20.233.138.0/27", + "20.233.138.48/28", + "20.233.138.64/26", + "20.233.141.128/28", + "20.233.141.16/28", + "20.233.141.192/28", + "20.233.141.48/28", + "20.233.143.112/28", + "20.233.143.160/27", + "20.233.157.240/28", + "20.233.159.0/28", + "20.233.165.0/25", + "20.233.165.240/28", + "20.233.166.0/26", + "20.233.166.128/25", + "20.233.166.64/28", + "20.233.166.96/27", + "20.233.167.112/28", + "20.233.167.240/28", + "20.233.177.16/28", + "20.233.177.240/28", + "20.233.179.240/28", + "20.233.180.0/27", + "20.233.180.112/28", + "20.233.180.176/28", + "20.233.180.240/28", + "20.233.181.208/28", + "20.233.184.128/26", + "20.233.185.64/28", + "20.233.186.128/27", + "20.233.186.192/27", + "20.233.214.192/28", + "20.233.76.64/28", + "20.38.158.120/29", + "20.46.193.40/29", + "20.46.193.88/29", + "20.46.43.128/29", + "20.74.162.48/28", + "20.74.163.160/28", + "40.120.112.128/27", + "40.120.112.176/28", + "40.120.112.192/27", + "40.120.112.96/28", + "40.120.65.136/29", + "40.120.78.240/29", + "40.123.218.63/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "uksouth", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "20.254.183.0/28", + "4.150.168.160/28", + "4.158.9.160/28", + "51.140.204.4/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "uksouth", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "172.186.21.248/29", + "172.186.24.0/28", + "172.186.31.34/31", + "20.108.135.16/28", + "20.108.88.224/28", + "20.108.90.64/28", + "20.162.170.80/28", + "20.162.184.0/29", + "20.162.184.72/29", + "20.162.184.96/29", + "20.162.185.48/29", + "20.254.87.64/28", + "20.26.137.124/30", + "20.26.144.248/29", + "20.26.144.56/29", + "20.26.148.96/29", + "20.26.155.192/27", + "20.26.156.224/28", + "20.26.156.48/28", + "20.26.156.64/28", + "20.26.157.240/28", + "20.26.187.144/28", + "20.26.187.208/28", + "20.26.187.80/28", + "20.26.188.144/28", + "20.26.188.160/28", + "20.26.188.192/26", + "20.26.188.96/27", + "20.26.189.160/27", + "20.26.189.192/27", + "20.26.189.224/28", + "20.26.189.32/27", + "20.26.189.96/27", + "20.26.190.128/26", + "20.26.190.16/28", + "20.26.190.192/27", + "20.26.190.32/27", + "20.26.190.64/26", + "20.26.191.0/27", + "20.26.191.128/26", + "20.26.191.192/27", + "20.26.191.224/28", + "20.26.250.32/28", + "20.26.251.176/28", + "20.26.251.192/27", + "20.26.251.64/26", + "20.26.253.64/28", + "20.26.254.240/28", + "20.26.254.32/28", + "20.26.255.160/28", + "20.26.29.184/29", + "20.26.44.160/28", + "20.26.63.176/28", + "20.26.70.80/28", + "20.26.88.64/29", + "20.50.110.160/29", + "20.77.189.128/28", + "4.158.14.48/28", + "4.158.15.144/28", + "4.158.15.160/27", + "4.158.15.96/27", + "4.158.9.160/28", + "4.234.50.240/28", + "4.234.51.144/28", + "4.234.51.176/28", + "4.234.52.32/28", + "4.234.54.0/28", + "4.234.54.112/28", + "4.234.54.128/27", + "4.250.233.0/27", + "4.250.235.0/27", + "4.250.236.96/28", + "4.250.3.0/30", + "51.132.195.36/30", + "51.137.160.120/29", + "51.140.151.184/30", + "51.140.203.27/32", + "51.141.67.0/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "ukwest", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "20.254.183.0/28", + "4.150.168.160/28", + "51.140.204.4/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "ukwest", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "172.186.21.248/29", + "172.186.24.0/28", + "172.186.31.34/31", + "51.137.160.120/29", + "51.140.203.27/32", + "51.141.67.0/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "usgovarizona", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "52.244.37.5/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "usgovvirginia", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "52.227.227.164/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "westcentralus", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "13.78.197.48/28", + "4.150.168.160/28", + "52.150.136.68/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "westcentralus", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "128.24.140.192/27", + "128.24.162.16/28", + "128.24.162.48/28", + "128.24.163.0/28", + "13.71.212.240/28", + "13.71.212.80/28", + "13.71.213.80/28", + "13.78.131.208/29", + "13.78.132.160/29", + "13.78.133.64/29", + "13.78.136.144/28", + "13.78.137.64/29", + "13.78.138.248/29", + "13.78.141.88/29", + "13.78.143.104/29", + "13.78.143.32/29", + "13.78.197.240/28", + "13.78.204.176/28", + "172.208.156.208/28", + "172.208.156.80/28", + "172.208.156.96/28", + "172.208.219.56/29", + "172.208.219.64/28", + "172.215.212.160/28", + "172.215.212.48/28", + "172.215.212.64/28", + "172.215.217.112/28", + "172.215.230.160/28", + "172.215.230.32/28", + "4.255.167.96/28", + "52.150.136.68/30", + "52.161.33.144/28", + "52.161.33.224/28", + "52.161.35.192/27", + "52.161.35.96/28", + "52.161.36.128/28", + "52.161.36.176/28", + "52.161.36.192/28", + "52.161.36.240/28", + "52.161.36.96/28", + "52.161.37.16/28", + "52.161.37.32/27", + "52.161.39.160/28", + "52.161.41.176/28", + "52.161.41.192/28", + "52.161.44.192/28", + "57.151.131.176/28", + "57.151.131.208/28", + "57.151.131.32/28", + "57.151.131.80/28", + "57.151.132.0/28", + "57.151.132.112/28", + "57.151.132.80/28", + "57.151.141.96/27", + "57.151.142.0/28", + "57.151.142.112/28", + "57.151.151.0/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "westeurope", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "20.103.219.240/28", + "4.150.168.160/28", + "40.74.30.80/32", + "52.232.19.246/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "westeurope", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "104.40.169.48/28", + "108.141.14.176/28", + "108.141.15.176/28", + "108.141.15.192/28", + "108.143.178.64/28", + "13.81.177.0/27", + "13.81.177.32/28", + "13.81.182.128/28", + "13.81.182.160/27", + "13.81.182.192/26", + "13.95.73.160/27", + "13.95.73.192/26", + "13.95.73.80/28", + "13.95.78.0/27", + "13.95.79.0/28", + "13.95.79.32/27", + "13.95.79.96/27", + "132.220.132.160/28", + "132.220.133.128/25", + "132.220.134.0/24", + "132.220.135.0/27", + "132.220.135.32/28", + "132.220.205.128/27", + "132.220.205.160/28", + "132.220.205.80/28", + "132.220.205.96/27", + "132.220.243.160/28", + "132.220.243.96/28", + "132.220.244.144/28", + "132.220.244.16/28", + "132.220.244.208/28", + "132.220.246.16/28", + "172.199.229.176/28", + "172.199.230.128/25", + "172.199.231.0/24", + "172.201.244.200/29", + "172.201.83.192/29", + "172.201.84.24/29", + "172.205.204.120/29", + "172.205.204.128/29", + "172.211.2.248/29", + "172.211.3.72/29", + "172.211.58.192/29", + "172.211.67.168/29", + "20.101.6.96/28", + "20.103.236.96/29", + "20.107.13.224/29", + "20.224.213.72/29", + "20.23.100.16/28", + "20.23.103.208/28", + "20.23.72.224/28", + "20.23.99.192/28", + "20.238.132.112/29", + "20.238.135.240/28", + "20.238.202.200/29", + "20.31.137.96/28", + "20.31.237.96/28", + "20.31.55.0/28", + "20.4.144.176/28", + "20.4.188.80/28", + "20.4.189.48/28", + "20.4.190.240/28", + "20.4.191.128/27", + "20.4.191.16/28", + "20.4.191.32/28", + "20.4.191.96/27", + "20.4.246.96/29", + "20.50.190.16/28", + "20.50.190.80/28", + "20.50.191.32/28", + "20.50.206.192/28", + "20.50.46.176/28", + "20.56.199.240/28", + "20.61.163.224/28", + "20.61.164.0/28", + "20.61.165.176/28", + "20.61.166.128/28", + "20.61.166.240/28", + "20.61.166.80/28", + "20.61.166.96/28", + "20.61.167.16/28", + "20.61.167.224/28", + "20.61.167.48/28", + "20.61.167.64/28", + "20.61.176.80/28", + "20.61.237.80/28", + "20.61.241.0/29", + "20.76.17.192/29", + "23.100.0.135/32", + "4.175.100.160/28", + "4.175.100.80/28", + "4.175.111.32/28", + "4.175.205.224/28", + "4.175.206.32/28", + "4.175.41.128/28", + "4.175.71.32/27", + "4.175.77.232/29", + "4.175.77.96/29", + "40.114.160.224/28", + "40.74.30.81/32", + "48.199.151.240/28", + "48.199.159.192/26", + "50.85.133.128/25", + "50.85.133.80/28", + "50.85.133.96/27", + "50.85.134.0/28", + "50.85.142.144/28", + "50.85.143.144/28", + "50.85.143.208/28", + "50.85.143.64/28", + "51.105.135.128/28", + "51.124.138.200/29", + "51.124.19.112/28", + "51.124.194.248/29", + "51.124.196.8/29", + "51.124.42.96/29", + "51.138.1.16/28", + "52.157.220.0/28", + "52.157.221.32/28", + "52.174.77.112/28", + "74.178.167.144/28", + "74.178.167.224/28", + "74.178.167.64/28", + "9.163.31.16/28", + "98.64.206.208/28", + "98.64.206.224/27", + "98.64.207.0/27", + "98.64.40.168/29", + "98.64.61.48/28", + "98.64.62.64/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "westindia", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "104.211.190.96/28", + "104.211.89.81/32", + "20.235.199.64/28", + "4.150.168.160/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "westindia", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "104.211.101.14/32", + "104.211.86.40/29", + "20.192.96.40/29", + "20.198.25.0/29", + "20.198.9.224/29", + "20.244.88.56/29", + "40.80.55.104/29", + "52.136.48.68/30", + "57.159.130.160/27", + "98.70.75.40/29", + "98.70.76.16/29", + "98.70.91.64/29" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "westus", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "13.91.180.32/28", + "4.150.168.160/28", + "40.118.174.12/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "westus", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "104.209.2.128/28", + "104.209.3.112/28", + "104.209.3.144/28", + "104.209.3.80/28", + "104.209.9.192/28", + "104.40.21.16/29", + "104.40.27.80/29", + "104.40.30.112/29", + "104.40.37.64/28", + "104.40.39.160/29", + "104.42.197.32/29", + "104.42.79.128/29", + "13.64.52.208/29", + "13.83.105.176/28", + "13.83.107.112/28", + "13.83.164.176/28", + "13.83.164.192/28", + "13.83.219.176/28", + "13.83.220.0/28", + "13.86.187.112/28", + "137.116.190.24/29", + "137.135.27.176/28", + "137.135.54.160/29", + "138.91.150.48/28", + "138.91.168.120/29", + "138.91.171.48/28", + "138.91.176.96/29", + "138.91.228.80/28", + "138.91.230.160/28", + "138.91.231.208/28", + "138.91.231.32/28", + "138.91.231.80/28", + "138.91.71.48/28", + "138.91.88.152/29", + "138.91.89.152/29", + "138.91.95.80/29", + "157.56.164.40/29", + "168.61.17.72/29", + "168.61.68.104/29", + "168.61.77.248/29", + "168.61.78.88/29", + "172.178.135.208/28", + "172.178.140.208/28", + "172.178.240.192/26", + "172.178.242.0/25", + "172.184.142.128/28", + "172.184.150.32/28", + "172.184.166.32/28", + "172.184.182.48/28", + "172.184.182.64/28", + "172.184.189.112/28", + "172.184.206.112/28", + "172.184.221.48/28", + "172.184.238.112/28", + "172.184.238.176/28", + "172.184.239.0/28", + "172.185.151.64/28", + "172.185.158.32/27", + "172.185.167.48/28", + "172.185.167.96/28", + "172.185.174.128/28", + "172.185.22.96/28", + "172.185.94.160/28", + "20.168.158.160/28", + "20.184.133.128/25", + "20.184.133.80/28", + "20.184.133.96/27", + "20.184.134.0/25", + "20.184.134.128/26", + "20.184.134.192/28", + "20.184.141.208/28", + "20.184.182.128/25", + "20.184.182.32/27", + "20.184.182.64/26", + "20.184.183.0/25", + "20.184.183.128/28", + "20.184.190.144/28", + "20.189.184.240/28", + "20.237.235.64/28", + "20.245.51.192/28", + "20.253.174.160/28", + "20.57.198.112/28", + "20.57.198.192/28", + "20.57.214.224/28", + "20.57.214.80/28", + "20.57.214.96/27", + "20.66.115.112/28", + "20.66.115.128/27", + "20.66.115.16/28", + "20.66.115.80/28", + "20.66.31.160/28", + "23.99.13.80/28", + "40.75.131.160/28", + "40.75.139.96/28", + "40.78.51.104/29", + "40.82.248.112/28", + "40.83.178.242/32", + "40.83.196.192/29", + "40.85.154.0/29", + "40.86.160.216/29", + "52.137.190.0/27", + "52.137.190.176/28", + "52.137.190.48/28", + "52.155.61.96/28", + "52.157.10.0/27", + "52.157.10.32/28", + "52.157.12.144/28", + "52.157.13.144/28", + "52.157.13.16/28", + "52.157.13.160/27", + "52.157.13.192/27", + "52.157.13.64/27", + "52.157.14.208/28", + "52.157.14.64/28", + "52.157.15.112/28", + "52.157.15.64/28", + "52.157.8.48/28", + "52.157.9.208/28", + "52.159.140.240/28", + "52.159.141.160/28", + "52.159.144.32/27", + "52.159.144.64/28", + "52.159.148.224/27", + "52.159.148.80/28", + "52.159.231.240/28", + "52.160.131.128/25", + "52.160.131.16/28", + "52.160.131.32/27", + "52.160.131.64/26", + "52.160.145.224/28", + "52.160.147.128/28", + "52.160.147.160/28", + "52.160.147.80/28", + "52.160.148.0/28", + "52.160.148.80/28", + "52.160.167.96/27", + "52.190.181.32/28", + "52.190.181.64/28", + "52.190.187.128/28", + "52.190.194.176/28", + "52.190.195.0/28", + "52.190.195.144/28", + "52.190.195.192/28", + "52.190.196.96/28", + "52.190.198.16/28", + "52.225.33.144/28", + "52.225.33.160/28", + "52.225.33.224/28", + "52.225.34.112/28", + "52.225.34.128/28", + "52.225.34.160/28", + "52.225.34.208/28", + "52.225.34.224/27", + "52.225.35.0/27", + "52.225.35.32/28", + "52.225.35.80/28", + "52.225.35.96/28", + "52.225.36.128/28", + "52.225.36.176/28", + "52.225.36.208/28", + "52.225.36.224/27", + "52.225.36.48/28", + "52.225.36.64/27", + "52.225.37.0/27", + "52.225.37.160/27", + "52.225.37.240/28", + "52.225.37.32/28", + "52.225.38.192/28", + "52.225.39.160/28", + "52.225.53.48/28", + "52.225.53.96/28", + "52.234.29.64/29", + "52.234.29.88/29", + "52.234.32.64/28", + "52.234.32.96/28", + "52.234.33.0/28", + "52.234.33.192/28", + "52.234.36.16/28", + "52.234.36.176/28", + "52.234.36.80/28", + "52.234.37.0/28", + "52.234.37.80/28", + "52.234.37.96/28", + "52.234.38.0/28", + "52.234.38.144/28", + "52.234.38.48/28", + "52.234.38.96/28", + "52.238.24.48/28", + "52.238.28.64/28", + "52.241.146.32/28", + "52.250.210.32/28", + "52.250.240.192/28", + "57.154.162.160/28", + "57.154.166.192/28", + "57.154.166.32/27", + "57.154.180.112/28", + "57.154.186.224/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "westus2", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "13.91.180.32/28", + "20.42.129.160/32", + "20.59.51.96/28", + "4.150.168.160/28", + "40.118.174.12/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "westus2", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "172.178.240.192/26", + "172.178.242.0/25", + "172.193.246.208/28", + "172.193.246.224/27", + "172.193.247.0/26", + "172.193.247.64/28", + "20.109.130.16/29", + "20.109.135.64/28", + "20.115.172.144/28", + "20.115.219.72/29", + "20.120.130.72/29", + "20.125.10.112/29", + "20.252.106.152/29", + "20.252.108.240/28", + "20.252.110.128/27", + "20.252.110.176/28", + "20.252.110.192/27", + "20.252.118.0/28", + "20.252.118.128/28", + "20.252.118.208/28", + "20.252.119.16/28", + "20.252.119.176/28", + "20.252.119.192/28", + "20.252.119.224/27", + "20.252.119.48/28", + "20.252.119.64/27", + "20.252.119.96/28", + "20.252.127.192/28", + "20.252.127.224/28", + "20.29.131.216/29", + "20.42.129.161/32", + "20.51.77.240/28", + "20.51.78.112/28", + "20.51.84.208/28", + "20.51.84.48/28", + "20.59.1.224/29", + "20.59.7.176/28", + "20.59.7.224/27", + "20.64.190.16/28", + "20.64.191.160/27", + "20.64.191.240/28", + "20.64.191.80/28", + "20.64.195.88/29", + "20.80.151.128/28", + "20.80.151.16/28", + "20.80.151.192/28", + "20.83.195.184/29", + "20.83.76.160/27", + "20.83.76.192/27", + "20.83.76.224/28", + "20.83.76.80/28", + "20.99.167.136/29", + "20.99.231.176/28", + "20.99.231.224/27", + "4.149.164.208/28", + "4.149.165.192/27", + "4.149.166.128/26", + "4.149.166.192/27", + "4.149.166.224/28", + "4.149.167.0/27", + "4.149.167.128/27", + "4.149.167.160/28", + "4.149.167.208/28", + "4.149.167.224/27", + "4.149.167.96/27", + "4.149.179.64/27", + "4.149.188.80/28", + "4.149.215.176/28", + "4.149.215.224/28", + "4.149.240.248/29", + "4.149.78.160/27", + "4.149.78.192/28", + "4.149.78.80/28", + "4.149.79.0/28", + "4.149.79.32/28", + "4.242.19.240/29", + "4.246.19.192/27", + "4.246.47.0/28", + "4.246.47.48/28", + "4.246.47.64/28", + "40.64.109.200/29", + "40.64.116.136/29", + "40.82.248.112/28", + "40.83.178.242/32", + "40.91.82.72/29", + "52.156.144.120/29", + "52.233.97.112/29" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "westus3", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "20.150.160.106/32", + "4.150.168.160/28", + "4.227.68.192/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "westus3", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "172.173.16.208/29", + "172.173.24.184/29", + "20.118.178.144/29", + "20.125.64.240/28", + "20.125.64.8/29", + "20.125.65.192/28", + "20.125.67.208/28", + "20.125.68.64/28", + "20.125.69.160/28", + "20.125.69.56/29", + "20.125.70.192/27", + "20.125.70.224/29", + "20.14.10.48/28", + "20.14.14.224/28", + "20.14.14.32/28", + "20.14.59.144/28", + "20.14.60.192/28", + "20.14.60.64/28", + "20.14.60.96/28", + "20.14.61.48/28", + "20.14.8.32/28", + "20.150.160.104/32", + "20.150.227.200/29", + "20.150.249.248/29", + "20.163.2.88/29", + "20.163.3.56/29", + "20.163.31.104/29", + "20.168.96.112/29", + "20.168.96.96/29", + "20.169.49.96/29", + "20.171.230.128/28", + "20.171.231.32/28", + "20.25.169.176/29", + "20.25.169.64/28", + "20.25.173.64/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "gcp", + "region": "asia-northeast1", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "34.146.146.176/28", + "34.146.235.35/32", + "34.8.0.0/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "gcp", + "region": "asia-northeast1", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "34.146.146.176/28", + "34.146.86.3/32", + "35.230.246.0/24" + ], + "ipv6Prefixes": [] + }, + { + "platform": "gcp", + "region": "asia-south1", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "34.100.245.214/32", + "34.47.163.96/28", + "34.8.0.0/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "gcp", + "region": "asia-south1", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "34.47.129.0/24", + "34.47.163.96/28", + "34.93.172.236/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "gcp", + "region": "asia-southeast1", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "34.126.133.240/32", + "34.143.162.160/28", + "34.8.0.0/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "gcp", + "region": "asia-southeast1", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "34.143.162.160/28", + "34.87.145.17/32", + "35.234.207.0/24" + ], + "ipv6Prefixes": [] + }, + { + "platform": "gcp", + "region": "australia-southeast1", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "34.40.128.0/28", + "34.8.0.0/28", + "35.244.88.131/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "gcp", + "region": "australia-southeast1", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "34.40.128.0/28", + "34.40.166.0/24", + "34.87.224.132/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "gcp", + "region": "europe-west1", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "34.38.159.16/28", + "34.8.0.0/28", + "35.190.193.117/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "gcp", + "region": "europe-west1", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "34.38.159.16/28", + "34.52.129.0/24", + "35.187.166.222/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "gcp", + "region": "europe-west2", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "34.39.0.32/28", + "34.8.0.0/28", + "34.89.123.127/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "gcp", + "region": "europe-west2", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "34.105.190.3/32", + "34.39.0.32/28", + "34.39.36.0/24" + ], + "ipv6Prefixes": [] + }, + { + "platform": "gcp", + "region": "europe-west3", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "34.159.208.230/32", + "34.8.0.0/28", + "34.89.210.112/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "gcp", + "region": "europe-west3", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "34.89.210.112/28", + "35.198.69.110/32", + "35.235.43.0/24" + ], + "ipv6Prefixes": [] + }, + { + "platform": "gcp", + "region": "me-central2", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "34.166.168.240/28", + "34.8.0.0/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "gcp", + "region": "me-central2", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "34.166.168.240/28", + "34.166.35.42/32", + "35.252.32.0/24" + ], + "ipv6Prefixes": [] + }, + { + "platform": "gcp", + "region": "northamerica-northeast1", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "34.118.158.176/28", + "34.152.60.53/32", + "34.8.0.0/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "gcp", + "region": "northamerica-northeast1", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "34.118.158.176/28", + "34.152.10.135/32", + "34.19.128.0/24" + ], + "ipv6Prefixes": [] + }, + { + "platform": "gcp", + "region": "southamerica-east1", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "34.39.157.192/28", + "34.8.0.0/28", + "35.198.61.240/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "gcp", + "region": "southamerica-east1", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "34.39.157.192/28", + "34.95.225.209/32", + "35.235.1.0/24" + ], + "ipv6Prefixes": [] + }, + { + "platform": "gcp", + "region": "us-central1", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "34.128.32.16/28", + "34.72.196.197/32", + "34.8.0.0/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "gcp", + "region": "us-central1", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "34.123.97.237/32", + "34.128.32.16/28", + "34.33.0.0/24" + ], + "ipv6Prefixes": [] + }, + { + "platform": "gcp", + "region": "us-east1", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "34.138.66.176/28", + "34.139.33.52/32", + "34.8.0.0/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "gcp", + "region": "us-east1", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "34.138.66.176/28", + "34.23.162.0/24", + "35.196.217.150/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "gcp", + "region": "us-east4", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "34.145.222.16/28", + "34.8.0.0/28", + "34.86.133.227/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "gcp", + "region": "us-east4", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "34.145.222.16/28", + "34.48.82.0/24", + "35.186.178.4/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "gcp", + "region": "us-west1", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "34.118.194.80/28", + "34.8.0.0/28", + "35.185.196.216/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "gcp", + "region": "us-west1", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "34.118.194.80/28", + "34.168.98.0/24", + "34.82.78.230/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "gcp", + "region": "us-west4", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "34.125.26.53/32", + "34.16.224.32/28", + "34.8.0.0/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "gcp", + "region": "us-west4", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "34.125.175.166/32", + "34.16.224.32/28", + "34.50.160.0/24" + ], + "ipv6Prefixes": [] + } + ] +} \ No newline at end of file diff --git a/docs/json-history/ip-ranges-20260601-1458.json b/docs/json-history/ip-ranges-20260601-1458.json new file mode 100644 index 0000000..f87df2e --- /dev/null +++ b/docs/json-history/ip-ranges-20260601-1458.json @@ -0,0 +1,4539 @@ +{ + "timestampSeconds": 1779390611, + "schemaVersion": "1.0", + "prefixes": [ + { + "platform": "aws", + "region": "ap-northeast-1", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "18.99.67.176/28", + "35.72.28.0/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "ap-northeast-1", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "18.177.16.95/32", + "35.72.28.0/28", + "52.195.231.0/24" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "ap-northeast-2", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "18.98.129.32/28", + "3.38.156.176/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "ap-northeast-2", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "3.38.156.176/28", + "43.203.162.0/24", + "54.180.50.119/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "ap-south-1", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "18.96.224.16/28", + "65.0.37.64/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "ap-south-1", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "13.200.135.0/24", + "13.232.248.161/32", + "65.0.37.64/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "ap-southeast-1", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "13.214.1.96/28", + "18.99.38.0/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "ap-southeast-1", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "13.213.212.4/32", + "13.214.1.96/28", + "47.128.12.0/24" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "ap-southeast-2", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "18.98.192.128/28", + "3.26.4.0/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "ap-southeast-2", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "13.237.96.217/32", + "3.26.4.0/28", + "3.27.139.0/24" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "ap-southeast-3", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "18.98.96.160/28", + "18.98.96.192/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "ap-southeast-3", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "18.98.96.163/32", + "18.98.98.0/24" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "ca-central-1", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "18.99.0.192/28", + "3.96.84.208/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "ca-central-1", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "15.157.166.0/24", + "3.96.84.208/28", + "35.183.59.105/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "eu-central-1", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "18.159.44.32/28", + "18.96.33.224/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "eu-central-1", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "18.159.32.64/32", + "18.159.44.32/28", + "3.77.216.0/24" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "eu-north-1", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "18.99.97.0/24" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "eu-west-1", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "18.97.193.128/28", + "3.250.244.112/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "eu-west-1", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "3.250.244.112/28", + "3.253.190.0/24", + "46.137.47.49/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "eu-west-2", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "18.134.65.240/28", + "18.98.160.48/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "eu-west-2", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "18.134.65.240/28", + "18.171.216.0/24", + "3.10.112.150/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "eu-west-3", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "13.39.141.128/28", + "18.98.64.208/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "eu-west-3", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "13.39.141.128/28", + "15.236.174.74/32", + "15.237.199.0/24" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "sa-east-1", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "15.229.120.16/28", + "18.96.64.128/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "sa-east-1", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "15.229.120.16/28", + "15.229.205.0/24", + "177.71.254.47/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "us-east-1", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "18.97.15.0/28", + "3.237.73.224/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "us-east-1", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "3.237.73.224/28", + "3.41.179.0/25", + "44.215.162.0/24", + "54.156.226.103/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "us-east-2", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "18.97.131.208/28", + "3.128.237.208/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "us-east-2", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "18.221.200.169/32", + "3.128.237.208/28", + "3.145.247.0/24" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "us-gov-west-1", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "3.30.186.128/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "us-gov-west-1", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "3.30.186.128/28", + "3.30.245.130/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "us-west-1", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "18.96.128.16/28", + "44.234.192.32/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "us-west-1", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "18.96.129.0/24", + "44.234.192.32/28", + "52.27.216.188/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "us-west-2", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "18.98.3.224/28", + "44.234.192.32/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "aws", + "region": "us-west-2", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "18.246.106.0/24", + "3.42.138.0/25", + "44.234.192.32/28", + "52.27.216.188/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "australiacentral", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "13.75.218.172/32", + "20.70.34.64/28", + "4.150.168.160/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "australiacentral", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "13.70.105.50/32", + "20.11.26.96/29", + "20.211.147.64/29", + "20.28.138.72/29", + "20.28.90.0/23", + "20.37.224.68/30", + "20.40.72.88/29", + "20.5.1.136/29", + "20.5.170.240/29", + "4.198.162.56/29", + "4.199.151.128/28", + "4.199.151.96/27", + "4.237.24.16/29", + "40.79.169.48/29" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "australiacentral2", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "13.75.218.172/32", + "20.193.110.128/28", + "4.150.168.160/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "australiacentral2", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "13.70.105.50/32", + "20.11.26.96/29", + "20.167.154.0/23", + "20.167.163.96/27", + "20.211.147.64/29", + "20.28.138.72/29", + "20.36.120.68/30", + "20.40.72.88/29", + "20.5.1.136/29", + "20.5.170.240/29", + "4.198.162.56/29", + "4.237.24.16/29", + "40.79.169.48/29" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "australiaeast", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "13.75.218.172/32", + "4.147.241.0/28", + "4.150.168.160/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "australiaeast", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "13.70.105.50/32", + "20.11.101.16/28", + "20.11.101.160/27", + "20.11.101.192/27", + "20.11.101.64/28", + "20.11.102.32/27", + "20.11.102.64/28", + "20.11.26.96/29", + "20.11.89.184/29", + "20.11.89.56/29", + "20.11.99.160/28", + "20.11.99.224/28", + "20.11.99.32/28", + "20.167.14.40/29", + "20.167.6.192/28", + "20.167.7.0/28", + "20.167.7.112/28", + "20.167.7.240/28", + "20.167.7.32/28", + "20.167.72.248/29", + "20.167.76.160/27", + "20.167.76.240/28", + "20.167.76.32/28", + "20.211.147.64/29", + "20.227.13.152/29", + "20.227.33.160/28", + "20.227.37.160/28", + "20.227.37.32/28", + "20.227.37.64/28", + "20.227.55.80/29", + "20.248.129.144/29", + "20.248.130.160/28", + "20.248.130.208/28", + "20.248.131.128/28", + "20.248.132.96/28", + "20.248.134.208/28", + "20.248.252.32/29", + "20.248.253.184/29", + "20.28.138.72/29", + "20.40.72.88/29", + "20.5.1.136/29", + "20.5.170.240/29", + "20.53.218.192/28", + "20.53.220.112/28", + "20.53.220.128/28", + "20.53.220.160/27", + "20.53.220.192/28", + "20.53.220.224/27", + "20.53.220.80/28", + "20.53.221.0/24", + "20.53.222.0/26", + "20.70.246.32/28", + "20.70.247.32/28", + "4.147.79.240/28", + "4.147.88.96/29", + "4.147.89.240/28", + "4.147.90.128/28", + "4.195.100.16/28", + "4.195.100.32/28", + "4.195.101.144/28", + "4.195.101.176/28", + "4.195.99.144/28", + "4.195.99.224/28", + "4.198.162.56/29", + "4.237.22.0/28", + "4.237.23.160/28", + "4.237.24.16/29", + "40.79.169.48/29", + "48.215.100.0/23" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "australiasoutheast", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "13.75.218.172/32", + "4.147.241.0/28", + "4.150.168.160/28", + "4.198.113.16/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "australiasoutheast", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "13.70.105.50/32", + "13.77.43.104/29", + "13.77.44.88/29", + "191.239.179.136/29", + "20.11.147.192/28", + "20.11.147.224/27", + "20.11.149.144/28", + "20.11.149.192/28", + "20.11.150.0/28", + "20.11.150.128/28", + "20.11.150.224/27", + "20.11.150.48/28", + "20.11.151.112/28", + "20.11.151.128/28", + "20.11.151.160/28", + "20.11.151.224/28", + "20.11.151.32/28", + "20.11.158.160/27", + "20.11.159.144/28", + "20.11.159.160/28", + "20.11.159.240/28", + "20.11.159.96/27", + "20.11.239.160/27", + "20.11.239.192/26", + "20.11.239.96/28", + "20.11.26.96/29", + "20.211.147.64/29", + "20.211.197.112/28", + "20.211.198.240/28", + "20.211.241.16/28", + "20.211.241.240/28", + "20.211.242.176/28", + "20.211.243.16/28", + "20.211.243.80/28", + "20.28.138.72/29", + "20.40.72.88/29", + "20.42.224.68/30", + "20.5.1.136/29", + "20.5.170.240/29", + "20.70.70.192/28", + "20.92.32.32/28", + "20.92.34.224/28", + "20.92.34.64/28", + "20.92.35.112/28", + "20.92.36.48/28", + "20.92.37.128/28", + "20.92.38.176/28", + "20.92.39.0/28", + "20.92.39.128/28", + "20.92.39.240/28", + "20.92.40.232/29", + "20.92.41.160/29", + "4.198.143.240/28", + "4.198.157.160/28", + "4.198.162.56/29", + "4.198.75.32/28", + "4.198.76.128/27", + "4.198.76.16/28", + "4.198.77.16/28", + "4.198.77.64/28", + "4.198.77.96/28", + "4.198.78.48/28", + "4.198.85.128/25", + "4.198.85.96/27", + "4.198.86.0/26", + "4.198.86.64/27", + "4.198.94.176/28", + "4.198.94.192/26", + "4.198.94.80/28", + "4.198.95.0/25", + "4.198.95.128/28", + "4.200.164.0/23", + "4.200.172.128/28", + "4.200.172.72/29", + "4.237.24.16/29", + "40.127.75.248/29", + "40.79.169.48/29", + "52.189.195.56/29", + "52.189.210.64/29", + "52.189.211.40/29", + "52.189.214.120/29" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "austriaeast", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "68.210.20.0/23" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "belgiumcentral", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "9.160.28.0/23" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "brazilsouth", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "104.41.54.118/32", + "20.201.68.160/28", + "4.150.168.160/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "brazilsouth", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "191.232.53.223/32", + "191.233.243.64/28", + "191.238.134.24/29", + "20.195.138.176/29", + "20.195.154.152/29", + "20.197.204.224/28", + "20.197.205.160/27", + "20.197.205.192/26", + "20.197.206.0/26", + "20.197.206.112/28", + "20.197.206.144/28", + "20.197.206.160/27", + "20.197.206.192/28", + "20.197.206.224/27", + "20.197.207.0/27", + "20.197.207.128/26", + "20.197.207.48/28", + "20.197.207.64/26", + "20.201.127.40/29", + "20.201.50.208/28", + "20.201.75.240/28", + "20.201.76.128/27", + "20.201.76.224/28", + "20.201.77.16/28", + "20.201.78.176/28", + "20.201.78.208/28", + "20.206.144.56/29", + "20.206.205.224/28", + "20.226.136.32/29", + "20.226.153.32/28", + "20.226.154.64/29", + "20.226.179.160/28", + "20.226.186.0/29", + "20.226.204.200/29", + "20.226.205.56/29", + "20.226.220.16/28", + "20.226.221.240/28", + "20.226.222.128/27", + "20.226.222.176/28", + "20.226.222.64/26", + "20.226.223.0/27", + "20.226.223.128/27", + "20.226.223.192/26", + "20.226.223.96/27", + "20.226.232.176/29", + "20.226.233.64/29", + "20.226.235.96/27", + "20.226.236.208/28", + "20.226.237.128/28", + "20.226.239.104/29", + "20.226.240.80/28", + "20.226.241.192/28", + "20.226.242.240/28", + "20.226.243.112/28", + "20.226.243.176/28", + "20.226.243.208/28", + "74.163.205.224/28", + "74.163.206.128/27", + "74.163.206.160/28", + "74.163.206.208/28", + "74.163.207.128/26", + "74.163.207.192/28", + "74.163.207.240/28", + "74.163.62.0/23" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "brazilsoutheast", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "108.140.52.0/23" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "canadacentral", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "13.71.184.74/32", + "20.220.50.240/28", + "4.150.168.160/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "canadacentral", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "13.71.168.40/29", + "130.107.132.160/28", + "130.107.132.192/28", + "130.107.132.80/28", + "130.107.132.96/28", + "130.107.133.0/28", + "130.107.133.144/28", + "130.107.133.160/28", + "130.107.133.192/27", + "130.107.134.112/28", + "130.107.134.128/28", + "130.107.134.160/27", + "130.107.134.192/28", + "130.107.134.224/27", + "130.107.134.64/28", + "130.107.135.0/26", + "130.107.135.128/28", + "130.107.135.160/28", + "130.107.135.192/26", + "130.107.135.80/28", + "130.107.135.96/28", + "20.104.3.168/29", + "20.116.153.184/29", + "20.116.157.152/29", + "20.116.195.0/28", + "20.116.195.128/28", + "20.116.197.192/27", + "20.116.197.96/27", + "20.116.198.0/28", + "20.116.198.64/27", + "20.116.202.192/26", + "20.116.247.16/29", + "20.116.247.8/29", + "20.151.145.208/29", + "20.151.153.184/29", + "20.151.34.96/29", + "20.175.131.208/28", + "20.175.132.192/28", + "20.175.132.96/29", + "20.175.145.208/28", + "20.175.147.128/27", + "20.175.147.16/28", + "20.175.147.192/26", + "20.175.148.0/26", + "20.175.148.240/28", + "20.175.149.48/28", + "20.175.149.64/27", + "20.175.150.112/28", + "20.175.150.128/28", + "20.175.150.160/27", + "20.175.150.48/28", + "20.175.150.64/28", + "20.175.182.192/26", + "20.175.183.0/25", + "20.175.184.120/29", + "20.175.189.56/29", + "20.200.94.232/29", + "20.200.95.56/29", + "4.172.46.144/28", + "4.172.46.240/28", + "4.172.47.16/28", + "4.172.5.160/27", + "4.206.242.0/23", + "4.229.241.184/29", + "4.229.241.192/29", + "4.239.251.152/29", + "4.239.251.160/29", + "4.248.199.48/28", + "40.85.218.176/29", + "40.85.223.25/32", + "40.89.16.68/32", + "52.228.105.112/28", + "52.228.106.16/28", + "52.228.116.56/29", + "52.228.98.192/28", + "52.237.62.224/28", + "52.237.63.112/28", + "52.237.63.160/28", + "52.246.152.40/29" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "canadaeast", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "13.71.184.74/32", + "20.220.99.176/28", + "4.150.168.160/28", + "40.89.16.70/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "canadaeast", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "13.71.168.40/29", + "20.151.145.208/29", + "20.151.153.184/29", + "20.151.34.96/29", + "20.175.16.0/28", + "20.175.16.144/28", + "20.175.16.48/28", + "20.175.16.64/28", + "20.175.16.96/28", + "20.175.17.0/28", + "20.175.17.128/27", + "20.175.17.64/28", + "20.175.18.32/28", + "20.175.27.0/28", + "20.175.27.128/25", + "20.175.27.80/28", + "20.175.27.96/27", + "20.175.28.0/27", + "20.175.28.128/28", + "20.175.28.48/28", + "20.175.42.160/28", + "20.175.42.96/28", + "20.200.58.152/29", + "20.200.62.168/29", + "20.200.62.48/29", + "20.220.106.48/28", + "20.220.111.176/28", + "20.220.111.32/28", + "20.220.111.64/28", + "20.220.111.96/28", + "20.220.73.112/28", + "20.220.77.32/29", + "4.229.241.184/29", + "4.229.241.192/29", + "4.229.32.176/28", + "4.229.32.224/28", + "4.229.33.144/28", + "4.229.33.176/28", + "4.229.33.192/28", + "4.229.33.224/27", + "4.229.34.0/28", + "4.229.34.160/27", + "4.229.34.192/27", + "4.229.34.32/27", + "4.229.35.0/27", + "4.229.35.128/26", + "4.229.35.208/28", + "4.229.35.224/27", + "4.229.35.48/28", + "4.229.35.80/28", + "4.229.35.96/27", + "4.229.36.0/27", + "4.229.36.160/27", + "4.229.36.192/28", + "4.229.36.224/28", + "4.229.36.32/28", + "4.229.36.64/26", + "4.229.43.160/28", + "4.229.44.128/27", + "4.229.44.192/28", + "4.229.44.224/28", + "4.229.44.48/28", + "4.229.44.64/27", + "4.229.45.128/26", + "4.229.45.192/27", + "4.229.45.240/28", + "4.229.46.0/28", + "4.229.80.24/29", + "4.229.80.48/28", + "4.229.89.40/29", + "4.239.251.152/29", + "4.239.251.160/29", + "4.248.74.0/23", + "40.69.97.8/29", + "40.85.223.25/32", + "40.86.228.200/29", + "40.89.16.68/30", + "52.229.101.104/29", + "52.229.101.64/29", + "52.229.93.96/29", + "52.229.98.248/29", + "52.246.152.40/29" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "centralindia", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "104.211.89.81/32", + "20.235.199.64/28", + "4.150.168.160/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "centralindia", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "104.211.101.14/32", + "104.211.86.40/29", + "135.235.128.0/23", + "135.235.149.240/28", + "135.235.150.160/28", + "135.235.227.240/28", + "135.235.230.128/28", + "135.235.230.208/28", + "135.235.230.224/28", + "135.235.231.0/28", + "135.235.231.128/27", + "135.235.231.160/28", + "135.235.231.192/28", + "135.235.231.224/27", + "135.235.231.48/28", + "135.235.231.80/28", + "135.235.231.96/27", + "20.192.96.40/29", + "20.198.25.0/29", + "20.198.9.224/29", + "20.207.73.128/29", + "20.207.73.208/29", + "20.207.92.176/29", + "20.207.93.16/29", + "20.219.203.64/29", + "20.219.204.128/29", + "20.219.229.240/29", + "20.219.229.48/28", + "20.219.237.192/29", + "20.219.237.216/29", + "20.235.224.208/28", + "20.235.226.208/28", + "20.235.227.128/28", + "20.235.227.160/27", + "20.235.227.208/28", + "20.235.227.224/27", + "20.235.227.64/28", + "20.235.227.96/28", + "20.235.228.144/28", + "20.235.228.160/28", + "20.235.228.208/28", + "20.235.228.224/27", + "20.235.228.32/27", + "20.235.228.96/28", + "20.235.229.0/28", + "20.235.229.128/27", + "20.235.229.176/28", + "20.235.229.192/26", + "20.235.229.48/28", + "20.235.229.64/26", + "20.235.230.0/28", + "20.235.230.112/28", + "20.235.230.128/26", + "20.235.230.192/27", + "20.235.230.48/28", + "20.235.230.64/27", + "20.244.88.56/29", + "4.224.103.112/28", + "4.224.103.144/28", + "4.224.103.240/28", + "4.224.138.96/28", + "4.224.14.0/27", + "4.224.8.64/27", + "4.224.8.96/28", + "4.224.92.128/26", + "4.224.92.240/28", + "4.224.92.32/27", + "4.224.93.240/28", + "4.224.93.80/28", + "4.224.94.32/28", + "4.224.94.64/28", + "40.80.55.104/29", + "40.80.78.128/29", + "98.70.75.40/29", + "98.70.76.16/29", + "98.70.91.64/29" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "centralus", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "20.37.156.209/32", + "4.150.168.160/28", + "4.249.192.240/28", + "40.70.58.221/32", + "52.254.24.96/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "centralus", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "104.208.18.136/29", + "13.86.56.40/29", + "172.173.10.120/29", + "172.202.121.240/29", + "20.109.205.152/29", + "20.109.228.8/29", + "20.12.135.0/28", + "20.12.135.128/28", + "20.12.166.160/28", + "20.12.167.192/28", + "20.12.167.224/28", + "20.15.235.192/29", + "20.161.68.200/29", + "20.161.68.208/29", + "20.161.81.88/29", + "20.161.82.48/29", + "20.186.233.208/29", + "20.221.17.144/28", + "20.221.18.208/28", + "20.221.19.16/28", + "20.221.19.96/28", + "20.236.221.192/27", + "20.236.222.16/28", + "20.236.223.16/28", + "20.236.223.32/28", + "20.236.223.80/28", + "20.36.151.208/28", + "20.37.156.208/32", + "20.65.4.240/28", + "20.80.123.112/28", + "20.80.123.160/28", + "20.80.123.224/27", + "20.80.124.80/28", + "20.83.19.192/26", + "20.83.2.112/29", + "20.83.20.0/28", + "20.83.20.112/28", + "20.83.20.64/27", + "20.98.170.0/28", + "23.101.152.95/32", + "4.150.167.208/28", + "4.150.167.224/27", + "4.150.177.120/29", + "4.249.133.96/28", + "4.249.134.64/28", + "4.249.135.0/28", + "4.249.135.240/28", + "4.249.142.160/28", + "4.249.142.192/28", + "4.249.142.64/28", + "4.249.143.0/26", + "4.249.143.128/26", + "4.249.143.224/27", + "4.249.143.80/28", + "4.249.143.96/28", + "4.249.229.208/28", + "4.249.229.224/27", + "4.249.230.0/26", + "4.249.230.128/27", + "4.249.230.96/27", + "4.249.231.64/28", + "40.70.144.208/28", + "40.77.36.0/23", + "48.214.167.160/28", + "48.214.222.144/28", + "48.214.222.176/28", + "48.214.222.192/28", + "48.214.222.64/27", + "48.214.223.0/27", + "48.214.223.128/28", + "48.214.223.176/28", + "48.214.223.224/28", + "48.214.223.32/28", + "48.214.223.80/28", + "48.214.223.96/27", + "52.154.56.64/29", + "52.158.166.8/29", + "52.158.222.240/29", + "52.165.98.248/29", + "52.180.139.48/29", + "52.182.136.200/29", + "52.182.221.176/28", + "52.182.223.16/29", + "52.185.73.192/28", + "52.189.37.0/29", + "52.189.38.88/29", + "52.189.72.160/28", + "52.189.72.32/28", + "52.189.73.16/28", + "52.228.152.176/28", + "52.228.152.48/28", + "52.228.153.32/28", + "52.228.154.112/28", + "52.228.154.32/28", + "68.154.4.136/29", + "74.249.107.232/29" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "centraluseuap", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "168.61.230.0/23" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "chilecentral", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "68.211.52.0/23" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "chinaeast2", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "163.228.200.0/26", + "52.130.1.64/29", + "52.130.2.232/29" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "chinaeast3", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "163.228.32.0/26", + "52.130.1.64/32", + "52.131.144.32/29" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "chinanorth2", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "139.217.120.0/26", + "52.130.16.112/29" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "chinanorth3", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "52.130.16.113/32", + "52.130.224.0/27", + "52.131.16.32/29" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "chinanorth3", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "143.64.119.112/28", + "143.64.119.160/27", + "143.64.119.192/26", + "143.64.136.96/28", + "143.64.137.48/28", + "143.64.154.160/28", + "143.64.155.16/28", + "143.64.155.160/27", + "143.64.155.208/28", + "143.64.155.224/27", + "143.64.155.80/28", + "143.64.156.48/28", + "143.64.29.192/28", + "143.64.29.64/28", + "143.64.30.32/28", + "143.64.31.208/28", + "143.64.31.224/27", + "143.64.57.192/29", + "143.64.61.136/29", + "163.228.235.40/29" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "denmarkeast", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "9.205.124.0/23" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "eastasia", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "20.189.106.192/32", + "20.239.211.144/28", + "20.247.134.0/28", + "4.150.168.160/28", + "52.187.145.107/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "eastasia", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "13.67.21.136/29", + "13.75.32.200/29", + "20.187.237.160/28", + "20.187.237.208/28", + "20.187.237.224/28", + "20.187.238.0/23", + "20.189.106.194/32", + "20.189.126.232/29", + "20.2.226.184/29", + "20.2.234.144/29", + "20.205.195.72/29", + "20.205.24.128/29", + "20.205.79.112/29", + "20.205.86.224/29", + "20.239.102.144/28", + "20.239.117.248/29", + "20.239.212.16/28", + "20.239.212.208/28", + "20.239.213.128/26", + "20.239.213.208/28", + "20.239.213.80/28", + "20.239.214.16/28", + "20.239.214.160/28", + "20.239.214.64/27", + "20.239.228.144/28", + "20.239.229.96/28", + "20.239.23.32/28", + "20.239.28.224/29", + "20.239.31.8/29", + "20.239.43.96/28", + "20.239.47.144/28", + "20.239.47.160/27", + "20.239.47.192/28", + "20.239.7.240/28", + "20.239.96.112/29", + "20.239.97.120/29", + "20.239.97.144/29", + "20.239.97.224/28", + "20.239.97.72/29", + "20.24.109.104/29", + "20.24.109.80/29", + "20.24.111.32/28", + "20.24.238.208/28", + "20.24.239.96/29", + "20.24.250.0/28", + "20.24.254.0/28", + "20.247.49.144/28", + "20.255.119.64/28", + "20.255.138.176/28", + "20.255.143.128/27", + "20.255.143.16/28", + "20.255.143.176/28", + "20.255.143.208/28", + "20.255.143.224/27", + "20.255.143.32/27", + "20.255.143.96/28", + "20.255.192.160/28", + "20.255.197.80/28", + "20.255.198.128/27", + "20.255.198.176/28", + "20.255.198.208/28", + "20.255.198.224/27", + "20.255.198.32/27", + "20.255.199.16/28", + "20.255.199.32/27", + "20.255.199.64/28", + "20.6.164.240/28", + "20.6.165.128/28", + "20.6.233.184/29", + "23.98.114.184/29", + "4.144.65.192/28", + "4.144.88.32/27", + "4.144.88.64/28", + "52.184.83.208/29", + "52.187.0.85/32", + "57.158.12.0/23", + "57.158.95.144/28", + "57.158.95.160/28", + "57.158.95.208/28", + "57.158.95.224/27", + "57.158.95.48/28", + "57.158.95.64/28", + "57.158.95.96/27", + "65.52.160.184/29" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "eastus", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "20.42.4.209/32", + "20.42.4.211/32", + "4.150.168.160/28", + "40.70.58.221/32", + "52.234.168.240/28", + "52.254.24.96/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "eastus", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "128.203.118.160/28", + "128.203.119.128/25", + "128.203.119.16/28", + "128.203.119.48/28", + "128.203.119.64/26", + "128.203.127.160/27", + "13.90.176.192/26", + "13.90.176.80/28", + "13.90.183.0/27", + "13.90.183.32/28", + "134.33.203.176/28", + "134.33.203.192/26", + "134.33.204.0/26", + "134.33.204.64/27", + "134.33.204.96/28", + "134.33.247.192/28", + "134.33.247.224/27", + "135.222.246.16/28", + "135.222.246.32/27", + "135.222.246.64/26", + "135.234.150.128/25", + "135.234.150.80/28", + "135.234.150.96/27", + "135.234.151.0/24", + "172.171.133.64/28", + "172.171.135.192/28", + "172.203.186.112/29", + "20.102.39.32/28", + "20.121.174.16/28", + "20.124.149.80/28", + "20.124.154.216/29", + "20.127.250.16/28", + "20.161.68.200/29", + "20.161.68.208/29", + "20.161.81.88/29", + "20.161.82.48/29", + "20.185.213.224/28", + "20.232.231.208/28", + "20.232.6.224/28", + "20.232.65.128/28", + "20.237.91.232/29", + "20.241.146.160/28", + "20.241.222.224/28", + "20.241.223.80/28", + "20.241.252.0/28", + "20.242.135.240/28", + "20.242.173.112/28", + "20.242.173.176/28", + "20.242.173.208/28", + "20.242.191.96/28", + "20.246.175.248/29", + "20.246.217.192/29", + "20.253.104.112/28", + "20.253.116.112/29", + "20.253.17.80/28", + "20.253.19.224/28", + "20.253.5.0/28", + "20.253.6.224/28", + "20.253.7.72/29", + "20.253.73.160/28", + "20.253.79.192/28", + "20.36.151.208/28", + "20.42.4.208/32", + "20.42.4.210/32", + "20.42.74.128/26", + "20.65.4.240/28", + "20.75.145.128/29", + "20.75.165.32/29", + "20.75.209.224/28", + "20.75.227.240/28", + "20.75.247.160/28", + "20.75.247.240/28", + "23.101.152.95/32", + "4.156.112.32/28", + "4.156.117.192/28", + "4.156.117.96/28", + "4.156.118.144/28", + "4.156.118.192/28", + "4.156.118.48/28", + "4.156.118.80/28", + "4.156.204.0/29", + "4.156.217.32/29", + "4.156.230.224/28", + "4.156.231.32/28", + "4.156.238.176/28", + "4.156.238.240/28", + "4.156.39.224/28", + "4.156.39.96/28", + "4.156.49.160/28", + "4.156.7.64/28", + "4.156.95.144/28", + "4.156.95.224/27", + "4.157.140.48/29", + "4.157.183.88/29", + "4.157.39.224/28", + "4.157.5.32/27", + "4.157.7.0/28", + "4.157.7.208/28", + "4.157.7.240/28", + "4.236.207.176/28", + "4.236.210.48/28", + "4.246.239.192/29", + "4.255.39.160/27", + "4.255.39.64/28", + "40.70.144.208/28", + "40.87.74.0/23", + "48.194.119.176/28", + "48.194.22.0/27", + "48.194.22.112/28", + "48.194.22.192/26", + "48.194.23.0/24", + "48.194.76.208/28", + "48.194.76.224/27", + "48.194.77.0/26", + "48.194.77.64/28", + "52.188.137.16/28", + "52.188.31.192/29", + "52.190.25.240/29", + "52.224.142.160/28", + "52.224.200.224/27", + "52.226.142.208/28", + "52.234.162.24/29", + "52.234.167.0/24", + "52.255.214.224/28", + "52.255.214.64/28", + "52.255.219.176/28", + "52.255.219.192/28", + "52.255.219.224/28", + "52.255.220.32/28", + "52.255.230.144/28", + "57.151.106.192/29", + "57.151.124.56/29", + "57.151.124.96/29", + "57.151.46.0/28", + "57.151.82.88/29", + "57.151.84.240/29", + "68.154.4.136/29", + "68.220.90.240/28", + "74.249.107.232/29" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "eastus2", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "20.41.4.113/32", + "20.41.4.116/32", + "4.150.168.160/28", + "40.70.58.221/32", + "52.254.24.96/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "eastus2", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "104.209.152.56/29", + "128.85.168.0/23", + "130.213.175.96/28", + "132.196.218.192/28", + "132.196.218.224/27", + "132.196.219.176/28", + "132.196.219.192/28", + "132.196.219.48/28", + "132.196.219.64/28", + "132.196.219.96/27", + "132.196.220.128/25", + "132.196.221.0/26", + "132.196.221.112/28", + "132.196.221.128/26", + "132.196.221.224/27", + "132.196.222.0/24", + "132.196.223.0/27", + "132.196.228.128/28", + "132.196.228.160/27", + "132.196.229.48/28", + "132.196.229.96/28", + "135.222.150.192/26", + "135.222.151.0/27", + "135.224.214.16/28", + "135.224.215.0/28", + "172.193.61.176/28", + "20.1.215.208/28", + "20.10.113.160/28", + "20.10.215.64/28", + "20.10.237.240/28", + "20.10.238.80/28", + "20.10.239.112/28", + "20.10.77.160/28", + "20.10.78.16/28", + "20.10.78.176/28", + "20.10.92.192/29", + "20.12.118.104/29", + "20.12.122.112/28", + "20.12.127.0/28", + "20.15.63.224/27", + "20.15.69.224/27", + "20.15.70.0/24", + "20.15.71.0/26", + "20.15.71.64/27", + "20.161.68.200/29", + "20.161.68.208/28", + "20.161.68.224/29", + "20.161.81.88/29", + "20.161.82.48/28", + "20.161.82.64/29", + "20.22.109.176/29", + "20.22.176.208/28", + "20.22.77.112/28", + "20.22.77.128/28", + "20.22.77.64/28", + "20.22.9.128/28", + "20.22.9.224/28", + "20.22.9.48/28", + "20.22.9.80/28", + "20.230.13.80/29", + "20.36.151.208/28", + "20.41.4.112/32", + "20.41.4.114/32", + "20.65.4.240/28", + "20.7.100.192/29", + "20.7.243.128/28", + "20.7.251.128/28", + "20.7.81.64/28", + "20.85.93.96/28", + "20.94.104.128/28", + "20.94.104.80/28", + "20.94.106.48/28", + "20.94.107.128/28", + "20.94.15.0/28", + "20.94.7.176/28", + "20.94.7.64/27", + "20.96.137.128/28", + "20.96.138.160/29", + "20.96.222.152/29", + "23.101.152.95/32", + "4.152.129.64/28", + "4.152.181.128/28", + "4.152.181.80/28", + "4.152.181.96/28", + "4.152.226.32/27", + "4.152.227.128/27", + "4.152.227.160/28", + "4.152.227.64/28", + "4.152.23.48/29", + "4.152.245.64/28", + "4.152.43.16/28", + "4.152.44.80/28", + "4.152.45.176/29", + "4.152.55.176/28", + "4.153.101.160/28", + "40.70.144.208/28", + "48.211.254.208/28", + "48.211.255.240/28", + "48.211.255.32/28", + "68.154.4.136/29", + "68.220.135.240/28", + "68.220.220.224/28", + "68.220.221.16/28", + "68.220.221.32/27", + "68.220.221.64/27", + "68.220.221.96/28", + "68.220.29.128/25", + "68.220.29.96/27", + "68.220.30.0/24", + "68.220.31.0/26", + "68.220.31.64/27", + "74.249.107.232/29", + "74.249.108.120/29", + "74.249.108.56/29" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "eastus2euap", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "72.147.6.0/23" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "eastus3", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "134.138.66.0/23" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "francecentral", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "20.19.113.192/28", + "4.150.168.160/28", + "40.89.168.225/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "francecentral", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "20.19.102.216/29", + "20.19.103.168/29", + "20.19.15.8/29", + "20.19.197.128/28", + "20.19.197.176/28", + "20.19.197.208/28", + "20.19.197.224/27", + "20.19.197.64/27", + "20.19.198.128/25", + "20.19.198.32/27", + "20.19.198.64/26", + "20.19.199.0/24", + "20.19.207.128/27", + "20.19.207.240/28", + "20.19.207.48/28", + "20.19.220.40/29", + "20.19.34.168/29", + "20.19.35.8/29", + "20.19.60.120/29", + "20.19.69.0/28", + "20.19.70.16/28", + "20.19.71.128/28", + "20.19.71.160/28", + "20.19.71.192/28", + "20.19.71.32/28", + "20.19.71.96/28", + "20.216.210.112/28", + "20.216.214.32/28", + "20.216.221.144/28", + "20.216.222.16/28", + "20.216.222.192/28", + "20.40.129.80/29", + "20.74.111.24/29", + "20.74.123.112/28", + "20.74.124.0/28", + "20.74.124.96/27", + "4.178.122.232/29", + "4.178.251.144/28", + "4.178.251.192/28", + "4.178.251.224/27", + "4.178.252.64/28", + "4.233.152.16/29", + "4.233.185.56/29", + "4.233.193.64/29", + "4.251.2.0/23", + "40.79.136.40/29", + "40.89.171.101/32", + "51.103.9.176/29", + "51.103.9.200/29", + "51.11.194.112/29", + "51.11.200.176/28", + "51.11.201.128/27", + "51.11.201.160/28", + "51.11.201.80/28", + "51.11.201.96/27", + "51.11.204.160/27", + "51.11.205.112/28", + "51.11.205.16/28", + "51.11.207.128/28", + "51.11.207.192/27", + "51.11.207.80/28", + "51.11.207.96/27", + "51.11.234.232/29", + "51.11.239.192/28", + "98.66.170.152/29" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "francesouth", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "4.251.218.0/23" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "germanynorth", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "20.170.196.0/23" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "germanywestcentral", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "20.52.93.41/32", + "4.150.168.160/28", + "98.67.225.0/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "germanywestcentral", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "131.189.129.176/28", + "131.189.129.192/26", + "131.189.155.128/25", + "131.189.156.0/26", + "131.189.234.112/28", + "131.189.234.160/28", + "20.113.100.224/29", + "20.170.105.112/28", + "20.170.105.128/27", + "20.170.105.160/28", + "20.170.107.144/28", + "20.170.110.0/25", + "20.170.110.176/28", + "20.170.111.0/25", + "20.170.111.128/26", + "20.170.111.192/27", + "20.170.111.240/28", + "20.170.56.16/29", + "20.170.93.128/28", + "20.170.93.192/28", + "20.170.94.128/27", + "20.170.94.16/28", + "20.170.94.160/28", + "20.170.94.32/28", + "20.170.94.80/28", + "20.170.94.96/27", + "20.218.169.40/29", + "20.218.169.48/29", + "20.52.65.200/29", + "20.52.93.42/32", + "20.79.123.48/28", + "20.79.123.96/28", + "20.79.144.104/29", + "20.79.144.144/28", + "4.182.54.0/23", + "4.185.248.16/29", + "51.116.120.96/28", + "9.141.186.192/28", + "9.141.186.224/28", + "98.67.155.0/29", + "98.67.155.40/29", + "98.67.157.224/28", + "98.67.158.0/28", + "98.67.158.128/28", + "98.67.159.128/28", + "98.67.159.16/28", + "98.67.159.240/28", + "98.67.159.32/28", + "98.67.159.80/28", + "98.67.159.96/27", + "98.67.186.32/28", + "98.67.230.40/29", + "98.67.230.88/29", + "98.67.231.136/29", + "98.67.231.24/29" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "indonesiacentral", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "70.153.44.0/23" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "israelcentral", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "51.4.18.0/23" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "israelnorthwest", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "20.217.148.0/23" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "italynorth", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "172.213.130.0/23" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "japaneast", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "4.150.168.160/28", + "4.189.194.16/28", + "52.246.160.72/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "japaneast", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "13.78.104.40/29", + "13.78.19.235/32", + "130.33.136.0/23", + "135.149.26.240/28", + "135.149.26.32/28", + "135.149.28.128/27", + "135.149.28.160/28", + "135.149.28.192/28", + "135.149.28.64/28", + "135.149.28.96/28", + "135.149.29.48/28", + "135.149.29.96/28", + "135.149.30.16/28", + "135.149.30.176/28", + "135.149.30.192/28", + "135.149.31.0/28", + "135.149.31.32/28", + "135.149.36.0/28", + "135.149.36.96/28", + "135.149.37.144/28", + "135.149.37.208/28", + "135.149.37.240/28", + "135.149.37.64/28", + "135.149.38.0/27", + "20.191.170.16/29", + "20.194.131.88/29", + "20.210.194.80/29", + "20.210.195.88/29", + "20.222.130.40/29", + "20.222.179.176/29", + "20.243.34.72/29", + "20.27.133.88/29", + "20.27.135.216/29", + "20.27.147.208/28", + "20.27.148.128/28", + "20.27.148.16/28", + "20.27.148.176/28", + "20.27.148.64/27", + "20.27.148.96/28", + "20.27.149.0/28", + "20.27.149.144/28", + "20.27.149.80/28", + "20.27.149.96/27", + "20.27.158.192/28", + "20.27.158.224/27", + "20.27.159.0/28", + "20.27.159.160/28", + "20.27.159.192/27", + "20.27.159.32/28", + "20.27.159.80/28", + "20.27.191.32/27", + "20.40.91.88/29", + "20.63.131.0/28", + "20.63.131.144/29", + "20.78.119.96/28", + "20.78.224.48/28", + "20.78.227.144/28", + "20.78.228.32/28", + "20.78.228.96/28", + "20.78.229.240/28", + "20.78.229.32/28", + "20.78.230.48/28", + "20.78.231.16/28", + "20.78.231.208/28", + "20.78.231.80/28", + "4.189.30.112/28", + "4.189.30.176/28", + "4.189.30.240/28", + "4.189.50.112/28", + "4.189.50.176/28", + "4.189.51.128/27", + "4.189.58.144/28", + "4.189.58.80/28", + "4.189.59.160/28", + "4.189.59.192/27", + "4.189.59.32/28", + "4.216.211.0/29", + "4.241.144.24/29", + "4.241.158.0/28", + "4.241.158.32/28", + "4.241.159.128/28", + "4.241.159.160/28", + "4.241.22.160/28", + "4.241.23.160/28", + "4.241.4.80/29", + "52.155.119.80/28", + "52.156.41.128/29", + "52.156.51.216/29", + "52.185.176.16/28", + "52.185.177.0/28", + "52.185.177.64/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "japanwest", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "138.91.16.64/28", + "4.150.168.160/28", + "52.246.160.72/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "japanwest", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "104.214.154.0/23", + "13.78.104.40/29", + "13.78.19.235/32", + "20.18.183.104/30", + "20.194.131.88/29", + "20.210.194.80/29", + "20.210.195.88/29", + "20.222.130.40/29", + "20.222.179.176/29", + "20.243.34.72/29", + "20.40.91.88/29", + "4.190.147.160/30", + "4.216.211.0/29", + "40.80.182.112/30" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "jioindiacentral", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "20.207.10.0/23" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "jioindiawest", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "20.244.252.0/23" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "koreacentral", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "20.214.117.160/28", + "4.150.168.160/28", + "52.141.22.164/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "koreacentral", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "20.196.229.16/28", + "20.196.229.192/26", + "20.196.229.32/27", + "20.196.244.112/28", + "20.196.254.136/29", + "20.196.255.0/29", + "20.196.255.24/29", + "20.200.240.80/29", + "20.200.241.104/29", + "20.200.244.0/29", + "20.200.245.168/29", + "20.200.247.40/29", + "20.200.249.144/28", + "20.200.249.16/28", + "20.200.249.208/28", + "20.200.250.128/28", + "20.200.251.0/26", + "20.200.251.160/28", + "20.200.251.224/28", + "20.200.251.64/28", + "20.200.252.0/27", + "20.200.252.160/28", + "20.200.254.224/28", + "20.214.101.144/28", + "20.214.102.0/26", + "20.214.102.160/27", + "20.214.102.224/27", + "20.214.102.64/27", + "20.214.103.0/28", + "20.214.103.128/28", + "20.214.103.160/28", + "20.214.103.192/27", + "20.214.103.32/27", + "20.214.103.64/27", + "20.214.103.96/28", + "20.214.115.176/28", + "20.214.118.112/28", + "20.214.218.232/29", + "20.214.219.80/29", + "20.214.80.0/28", + "20.214.83.16/28", + "20.214.91.48/28", + "20.214.92.0/28", + "20.214.92.208/28", + "20.214.93.0/28", + "20.214.93.128/28", + "20.214.97.160/27", + "20.214.97.192/28", + "20.249.52.0/28", + "20.249.52.240/28", + "20.249.52.48/28", + "20.249.53.0/27", + "20.249.53.144/28", + "20.249.53.192/28", + "20.249.53.224/27", + "20.249.53.32/28", + "20.249.53.64/26", + "20.249.54.0/28", + "20.249.54.32/28", + "20.39.198.216/29", + "20.39.199.24/29", + "20.41.105.232/29", + "20.41.120.112/29", + "4.218.120.24/29", + "4.230.108.128/26", + "4.230.108.192/28", + "4.230.55.144/28", + "4.230.55.160/27", + "4.230.55.192/27", + "4.230.55.224/28", + "4.230.86.192/28", + "4.230.87.16/28", + "4.230.87.32/27", + "4.230.87.64/28", + "52.141.26.120/29", + "52.141.26.136/29", + "52.141.6.181/32", + "52.231.56.72/29", + "52.231.82.0/23", + "74.227.136.168/29" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "koreasouth", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "4.243.18.0/23" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "malaysiasouth", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "85.211.70.0/23" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "malaysiawest", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "20.17.150.0/23" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "mexicocentral", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "158.23.42.112/28", + "158.23.96.34/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "mexicocentral", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "158.23.11.224/29", + "158.23.125.176/29", + "158.23.16.128/29", + "158.23.16.168/29", + "158.23.17.48/28", + "158.23.17.80/28", + "158.23.197.176/29", + "158.23.24.176/29", + "158.23.25.240/29", + "158.23.26.48/28", + "158.23.70.0/23", + "158.23.96.32/32", + "68.155.141.16/28", + "68.155.168.0/26", + "68.155.168.160/27", + "68.155.168.192/26", + "68.155.168.64/27", + "68.155.169.0/27", + "68.155.91.144/28", + "68.155.91.160/27", + "68.155.91.192/26", + "68.155.91.64/27", + "68.155.92.0/22" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "newzealandnorth", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "172.204.104.0/23" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "northcentralus", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "172.214.168.112/28", + "4.150.168.160/28", + "40.70.58.221/32", + "40.80.188.0/32", + "52.254.24.96/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "northcentralus", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "135.232.159.16/28", + "135.232.159.32/29", + "135.232.171.192/26", + "172.183.130.144/28", + "172.183.130.224/28", + "172.183.130.80/28", + "172.183.131.48/28", + "172.183.134.0/28", + "172.183.134.192/27", + "172.183.134.240/28", + "172.183.135.16/28", + "172.183.135.32/28", + "172.183.39.192/28", + "172.183.53.144/28", + "172.183.53.160/28", + "172.183.54.0/27", + "172.183.56.32/29", + "172.183.73.8/29", + "172.183.74.16/29", + "172.183.80.240/29", + "172.183.84.0/29", + "172.183.88.0/28", + "172.183.88.32/28", + "172.183.89.0/28", + "172.183.89.240/28", + "172.183.90.16/28", + "172.183.90.240/28", + "172.183.91.16/28", + "172.183.91.176/28", + "20.102.194.64/28", + "20.102.196.144/28", + "20.102.197.0/28", + "20.102.197.32/28", + "20.102.197.80/28", + "20.102.212.160/28", + "20.102.216.144/28", + "20.102.217.16/28", + "20.102.218.224/28", + "20.102.219.224/28", + "20.102.220.176/28", + "20.102.220.192/28", + "20.102.223.160/28", + "20.102.223.208/28", + "20.125.222.168/29", + "20.161.68.200/29", + "20.161.68.208/29", + "20.161.81.88/29", + "20.161.82.48/29", + "20.36.151.208/28", + "20.65.4.240/28", + "20.98.18.192/28", + "20.98.35.224/28", + "20.98.39.80/28", + "20.98.62.80/28", + "20.98.63.224/28", + "23.101.152.95/32", + "40.116.77.224/28", + "40.116.78.192/28", + "40.116.78.48/28", + "40.116.79.32/28", + "40.116.81.168/29", + "40.116.84.80/29", + "40.116.85.128/28", + "40.116.88.80/28", + "40.116.89.192/28", + "40.116.90.192/27", + "40.116.91.240/28", + "40.116.92.128/26", + "40.116.92.192/28", + "40.116.92.240/28", + "40.116.92.64/28", + "40.116.92.96/28", + "40.116.93.0/28", + "40.116.93.112/28", + "40.116.93.128/28", + "40.116.93.208/28", + "40.116.93.224/27", + "40.116.93.64/28", + "40.116.94.0/28", + "40.116.94.64/28", + "40.70.144.208/28", + "40.80.188.0/28", + "52.162.101.224/28", + "52.162.101.80/28", + "52.162.197.32/28", + "52.162.20.0/23", + "52.162.99.224/28", + "52.240.210.16/28", + "68.154.4.136/29", + "74.249.107.232/29" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "northeurope", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "20.103.219.240/28", + "20.38.84.81/32", + "4.150.168.160/28", + "4.209.165.0/28", + "52.232.19.246/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "northeurope", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "104.40.169.48/28", + "108.143.178.64/28", + "128.251.34.0/23", + "13.74.105.200/29", + "13.74.203.144/29", + "172.201.244.200/29", + "172.201.83.192/29", + "172.205.204.120/29", + "172.211.2.248/29", + "172.211.58.192/29", + "172.211.67.168/29", + "20.105.102.208/29", + "20.105.119.176/28", + "20.105.4.176/28", + "20.105.4.192/28", + "20.105.5.128/27", + "20.105.5.176/28", + "20.105.5.32/27", + "20.105.5.96/28", + "20.105.59.208/28", + "20.105.91.32/28", + "20.105.93.224/29", + "20.107.141.80/28", + "20.107.142.128/27", + "20.107.142.176/28", + "20.107.142.208/28", + "20.107.143.0/27", + "20.107.143.176/28", + "20.107.143.240/28", + "20.107.143.96/27", + "20.123.51.88/29", + "20.13.189.128/27", + "20.13.189.160/28", + "20.13.189.192/26", + "20.13.190.64/28", + "20.13.229.0/28", + "20.13.244.128/28", + "20.13.244.208/28", + "20.13.245.176/28", + "20.13.245.192/28", + "20.13.245.224/27", + "20.13.245.48/28", + "20.13.245.96/28", + "20.13.246.128/26", + "20.166.140.176/29", + "20.166.180.216/29", + "20.166.210.192/29", + "20.166.215.160/27", + "20.166.215.192/27", + "20.166.231.176/28", + "20.191.63.176/28", + "20.223.126.224/28", + "20.223.74.224/28", + "20.223.88.192/28", + "20.223.94.224/28", + "20.238.4.160/29", + "20.38.84.80/32", + "20.50.206.192/28", + "20.50.86.16/29", + "20.54.27.128/28", + "20.67.147.192/28", + "20.67.171.224/28", + "20.82.196.96/28", + "20.93.108.128/28", + "20.93.44.128/28", + "20.93.44.224/28", + "20.93.44.48/28", + "20.93.59.224/28", + "20.93.94.128/27", + "20.93.94.192/28", + "20.93.94.240/28", + "20.93.95.112/28", + "20.93.95.16/28", + "20.93.95.208/28", + "20.93.95.240/28", + "20.93.95.32/27", + "20.93.95.64/27", + "20.93.99.16/28", + "23.100.0.135/32", + "4.207.218.112/28", + "4.207.219.0/28", + "4.207.219.192/28", + "4.207.220.0/28", + "4.207.82.224/29", + "4.208.1.56/29", + "4.208.2.152/29", + "4.208.42.0/28", + "4.208.44.112/28", + "4.208.44.128/27", + "4.208.44.176/28", + "4.208.46.160/27", + "4.208.46.192/28", + "4.208.46.240/28", + "4.208.46.64/27", + "4.208.47.0/27", + "4.208.47.128/28", + "4.208.47.192/28", + "4.208.47.48/28", + "4.208.47.64/28", + "4.208.50.96/28", + "4.209.221.64/28", + "4.210.62.208/28", + "4.210.62.224/27", + "4.210.63.0/26", + "4.210.63.64/27", + "4.210.63.96/28", + "4.231.146.240/28", + "4.231.147.176/28", + "4.231.147.224/27", + "4.231.148.224/28", + "4.231.148.80/28", + "4.231.148.96/27", + "4.231.149.176/28", + "4.231.149.32/27", + "4.231.150.0/27", + "4.231.150.128/28", + "4.231.150.240/28", + "4.231.150.48/28", + "4.231.150.96/27", + "4.231.151.16/28", + "4.231.159.176/28", + "4.245.219.224/29", + "4.245.227.208/29", + "51.138.238.0/28", + "52.146.157.128/28", + "52.155.175.32/28", + "52.236.10.192/28", + "52.236.11.208/29", + "52.236.21.160/27", + "52.236.22.32/27", + "52.236.22.64/27", + "52.236.23.192/28", + "52.236.23.240/28", + "52.236.23.64/27", + "52.236.31.192/28", + "68.219.139.128/25", + "68.219.252.224/29", + "68.219.4.64/28", + "74.234.43.80/29", + "98.71.25.152/29" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "norwayeast", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "20.100.214.208/28", + "4.150.168.160/28", + "51.120.40.120/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "norwayeast", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "131.163.0.0/23", + "131.163.18.160/27", + "131.163.18.192/26", + "131.163.19.0/27", + "131.163.19.128/25", + "131.163.19.64/26", + "131.163.20.0/25", + "131.163.20.128/26", + "131.163.20.192/28", + "20.100.142.192/28", + "20.100.143.128/28", + "20.100.154.0/27", + "20.100.155.208/28", + "20.100.155.240/28", + "20.100.156.0/27", + "20.100.156.160/27", + "20.100.156.192/28", + "20.100.156.48/28", + "20.100.156.80/28", + "20.100.157.0/26", + "20.100.157.240/28", + "20.100.157.64/27", + "20.100.158.128/26", + "20.100.158.16/28", + "20.100.158.64/27", + "20.100.159.144/28", + "20.100.159.160/27", + "20.100.159.224/27", + "20.100.159.64/26", + "20.100.223.144/28", + "20.100.232.160/28", + "20.100.62.176/28", + "20.100.62.80/28", + "20.100.62.96/27", + "20.100.63.224/28", + "20.100.63.64/26", + "20.251.169.232/29", + "20.251.224.40/29", + "4.219.216.0/29", + "4.220.16.128/26", + "4.220.16.64/26", + "4.235.113.232/29", + "51.120.246.120/29", + "51.120.246.96/29", + "51.120.40.121/32", + "51.120.8.208/29", + "51.120.8.32/29", + "51.120.89.104/29", + "51.120.92.136/29", + "51.120.93.232/29", + "51.120.95.112/29", + "51.13.3.24/29", + "51.13.64.104/29", + "51.13.65.144/29", + "51.13.65.40/29", + "51.13.65.64/29", + "51.13.67.72/29", + "51.13.68.176/29" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "norwaywest", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "4.220.130.0/23" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "polandcentral", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "74.248.240.0/23" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "qatarcentral", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "20.173.17.128/28", + "20.21.32.32/32", + "4.150.168.160/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "qatarcentral", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "20.173.105.232/29", + "20.173.105.240/29", + "20.173.50.40/29", + "20.173.50.48/29", + "20.173.97.224/29", + "20.21.129.232/29", + "20.21.32.34/32", + "20.21.70.224/29", + "20.21.78.112/29", + "4.171.56.0/23", + "4.244.16.8/29" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "southafricanorth", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "102.133.224.24/32", + "20.87.238.224/28", + "4.150.168.160/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "southafricanorth", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "102.133.255.120/29", + "102.37.214.112/29", + "102.37.214.88/29", + "102.37.73.120/29", + "172.209.176.0/23", + "20.164.108.240/28", + "20.164.109.160/27", + "20.164.109.192/26", + "20.164.109.64/28", + "20.164.110.0/27", + "20.164.16.120/29", + "20.164.16.48/29", + "20.164.200.120/29", + "20.164.24.24/29", + "20.164.33.184/29", + "20.164.34.56/29", + "20.164.34.64/29", + "20.164.83.192/26", + "20.164.83.64/26", + "20.164.84.128/27", + "20.164.84.224/28", + "20.164.84.64/26", + "20.164.85.128/26", + "20.164.86.16/28", + "20.164.86.160/27", + "20.164.86.192/27", + "20.164.86.32/28", + "20.164.87.0/28", + "20.164.87.128/25", + "20.164.87.64/26", + "20.87.117.0/27", + "20.87.117.112/28", + "20.87.117.160/27", + "20.87.117.64/28", + "20.87.118.16/28", + "20.87.118.64/28", + "20.87.119.16/28", + "20.87.123.192/27", + "20.87.124.144/28", + "20.87.124.160/27", + "20.87.124.224/28", + "20.87.125.64/26", + "20.87.126.192/26", + "20.87.126.64/28", + "20.87.127.16/28", + "20.87.220.0/29", + "20.87.220.152/29", + "20.87.220.224/29", + "20.87.221.56/29", + "20.87.226.48/28", + "20.87.230.48/28", + "20.87.235.0/28", + "20.87.235.32/27", + "20.87.250.176/28", + "20.87.250.64/28", + "20.87.251.0/28", + "20.87.251.96/28", + "20.87.253.240/28", + "20.87.254.0/28", + "20.87.254.208/28", + "20.87.255.144/28", + "20.87.255.16/28", + "20.87.94.16/28", + "40.123.251.136/29", + "40.123.253.80/29", + "40.127.5.82/32", + "40.127.8.136/29", + "40.127.8.48/29" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "southafricawest", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "172.209.56.0/23" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "southcentralus", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "13.91.180.32/28", + "4.150.168.160/28", + "40.118.174.12/32", + "40.119.9.208/32", + "52.185.215.96/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "southcentralus", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "13.66.81.0/29", + "135.233.173.112/28", + "135.233.174.208/28", + "135.233.175.112/28", + "135.233.175.128/27", + "135.233.246.144/28", + "135.233.246.192/27", + "135.233.247.176/28", + "135.233.254.128/25", + "135.233.254.80/28", + "135.233.255.0/24", + "172.178.240.192/26", + "172.178.242.0/25", + "172.202.157.208/28", + "172.202.157.224/28", + "172.202.158.176/28", + "172.202.158.192/27", + "172.202.158.224/28", + "172.202.189.224/28", + "172.202.190.16/28", + "172.202.190.64/27", + "172.202.190.96/28", + "172.202.237.128/28", + "172.202.237.160/28", + "172.202.255.128/28", + "172.202.255.160/27", + "172.202.255.192/26", + "172.202.255.32/28", + "172.206.132.32/27", + "172.206.156.208/28", + "172.206.187.240/28", + "172.206.188.96/28", + "20.118.64.240/29", + "20.165.0.176/29", + "20.236.165.128/28", + "20.236.165.96/28", + "20.236.183.16/28", + "20.65.137.224/29", + "20.88.199.160/29", + "20.88.199.184/29", + "20.88.253.112/28", + "20.94.184.88/29", + "20.97.109.4/30", + "20.97.87.112/28", + "23.98.252.0/23", + "4.149.107.24/29", + "4.149.98.120/29", + "4.151.11.48/29", + "4.151.254.176/28", + "4.151.255.224/27", + "4.151.27.160/28", + "40.119.9.209/32", + "40.124.140.48/29", + "40.124.70.8/29", + "40.82.248.112/28", + "40.83.178.242/32", + "52.153.219.224/28", + "52.153.221.16/28", + "52.153.221.48/28", + "52.153.221.64/26", + "52.153.223.200/29", + "52.157.9.208/28", + "52.171.120.80/28", + "52.183.227.160/28", + "52.183.227.192/28", + "52.183.227.240/28", + "52.183.228.160/28", + "52.185.208.240/29", + "52.185.215.96/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "southcentralus2", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "48.216.56.0/23" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "southeastasia", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "20.247.134.0/28", + "4.150.168.160/28", + "52.187.145.107/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "southeastasia", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "104.43.103.128/28", + "104.43.103.208/28", + "104.43.122.0/23", + "13.67.21.136/29", + "135.171.12.144/28", + "135.171.12.192/28", + "135.171.12.64/27", + "135.171.29.176/28", + "135.171.29.224/28", + "135.171.30.128/26", + "135.171.30.240/28", + "135.171.30.96/28", + "135.171.31.0/27", + "135.171.31.112/28", + "135.171.31.128/27", + "135.171.31.160/28", + "135.171.31.192/28", + "135.171.31.224/27", + "172.188.123.176/29", + "172.188.66.64/29", + "20.198.157.112/29", + "20.205.195.72/29", + "20.205.241.104/29", + "20.205.243.240/29", + "20.212.92.0/29", + "20.24.135.232/29", + "20.24.135.40/29", + "20.247.133.192/28", + "20.247.134.16/28", + "20.247.134.80/28", + "20.247.135.32/28", + "20.247.198.208/28", + "20.247.198.64/28", + "20.247.199.0/28", + "20.247.199.48/28", + "20.247.199.80/28", + "20.247.199.96/28", + "20.247.243.160/27", + "20.247.243.192/27", + "20.247.244.224/27", + "20.6.3.224/29", + "20.6.34.248/29", + "20.6.5.40/29", + "20.6.82.208/29", + "20.6.83.136/29", + "23.98.114.184/29", + "4.144.182.128/28", + "4.144.182.176/28", + "4.144.182.192/26", + "4.144.183.0/28", + "4.144.187.112/28", + "4.144.187.128/28", + "4.144.187.160/28", + "4.144.187.48/28", + "4.144.187.64/27", + "4.144.194.112/28", + "4.144.194.160/28", + "4.144.204.16/28", + "4.144.204.176/28", + "4.144.204.224/28", + "4.144.204.96/28", + "4.144.205.128/27", + "4.144.205.192/26", + "4.144.205.64/26", + "4.144.206.16/28", + "4.144.206.32/27", + "4.144.206.64/28", + "40.119.228.16/29", + "40.119.247.224/29", + "52.187.0.85/32", + "52.237.98.24/29" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "southeastus", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "68.154.152.0/23" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "southeastus3", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "74.7.96.0/23" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "southindia", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "104.211.89.81/32", + "4.150.168.160/28", + "52.140.35.224/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "southindia", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "104.211.101.14/32", + "104.211.86.40/29", + "20.192.96.40/29", + "20.198.25.0/29", + "20.198.9.224/29", + "20.244.88.56/29", + "20.41.192.68/30", + "40.80.55.104/29", + "74.224.242.0/23", + "74.224.66.24/29", + "74.224.79.176/28", + "98.70.75.40/29", + "98.70.76.16/29", + "98.70.91.64/29" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "spaincentral", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "158.158.24.0/23" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "swedencentral", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "4.150.168.160/28", + "4.225.21.224/28", + "51.12.41.16/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "swedencentral", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "135.225.228.176/28", + "135.225.228.192/28", + "172.160.244.40/29", + "20.240.168.160/29", + "20.240.168.208/29", + "20.240.168.240/29", + "20.240.203.248/29", + "20.240.218.136/29", + "20.91.166.208/28", + "20.91.167.16/28", + "4.223.248.0/29", + "4.225.10.112/29", + "4.225.10.16/28", + "4.225.10.32/29", + "4.225.209.208/29", + "4.225.209.248/29", + "4.225.6.56/29", + "51.12.145.96/27", + "51.12.147.176/28", + "51.12.147.192/28", + "51.12.147.224/28", + "51.12.147.32/28", + "51.12.147.64/28", + "51.12.148.0/26", + "51.12.148.128/27", + "51.12.148.160/28", + "51.12.156.64/28", + "51.12.157.112/28", + "51.12.158.128/28", + "51.12.158.192/28", + "51.12.159.176/28", + "51.12.159.64/28", + "51.12.231.104/29", + "51.12.250.248/29", + "51.12.251.232/29", + "51.12.33.200/29", + "51.12.41.17/32", + "51.12.59.200/29", + "74.241.219.128/28", + "74.241.219.80/28", + "74.241.219.96/27", + "74.241.220.208/28", + "74.241.220.224/27", + "74.241.221.0/28", + "9.223.111.128/28", + "9.223.111.160/28", + "9.223.111.192/26", + "9.223.111.96/27", + "9.223.120.0/23", + "9.223.228.208/28", + "9.223.228.240/28", + "9.223.229.0/24", + "9.223.230.0/24", + "9.223.231.0/26", + "9.223.231.64/27" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "swedensouth", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "74.241.20.0/23" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "switzerlandnorth", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "20.208.63.112/28", + "4.150.168.160/28", + "51.107.48.120/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "switzerlandnorth", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "20.203.198.184/29", + "20.203.214.200/29", + "20.203.218.16/29", + "20.208.10.0/23", + "20.208.22.136/29", + "20.208.50.96/28", + "20.208.55.128/28", + "20.208.55.96/27", + "20.250.144.32/29", + "20.250.160.184/29", + "20.250.29.144/29", + "20.250.36.80/29", + "20.250.37.112/29", + "20.250.92.128/26", + "20.250.92.192/27", + "20.250.92.224/28", + "20.250.92.96/28", + "20.250.98.144/28", + "20.250.98.160/27", + "20.250.98.192/26", + "20.250.99.0/28", + "51.103.129.136/29", + "51.103.129.192/29", + "51.103.130.40/29", + "51.103.130.88/29", + "51.103.206.96/29", + "51.103.214.248/29", + "51.107.12.208/28", + "51.107.131.80/29", + "51.107.48.121/32", + "74.242.170.224/29" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "switzerlandwest", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "20.199.198.240/28", + "4.150.168.160/28", + "51.107.144.68/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "switzerlandwest", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "20.199.199.32/28", + "51.107.144.68/30", + "74.242.26.0/23", + "74.242.58.128/27", + "74.242.58.160/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "taiwannorth", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "51.53.36.0/23" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "taiwannorthwest", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "167.105.224.0/23" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "uaecentral", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "20.216.122.0/23" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "uaenorth", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "20.233.156.224/28", + "4.150.168.160/28", + "40.123.212.253/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "uaenorth", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "20.174.162.24/29", + "20.174.162.32/29", + "20.174.35.32/28", + "20.203.38.48/29", + "20.203.41.32/27", + "20.233.101.32/28", + "20.233.109.128/28", + "20.233.109.160/27", + "20.233.110.16/28", + "20.233.111.64/26", + "20.233.116.192/28", + "20.233.122.32/28", + "20.233.136.176/28", + "20.233.138.0/27", + "20.233.138.48/28", + "20.233.138.64/26", + "20.233.141.128/28", + "20.233.141.16/28", + "20.233.141.192/28", + "20.233.141.48/28", + "20.233.143.112/28", + "20.233.143.160/27", + "20.233.157.240/28", + "20.233.159.0/28", + "20.233.165.0/25", + "20.233.165.240/28", + "20.233.166.0/26", + "20.233.166.128/25", + "20.233.166.64/28", + "20.233.166.96/27", + "20.233.167.112/28", + "20.233.167.240/28", + "20.233.177.16/28", + "20.233.177.240/28", + "20.233.179.240/28", + "20.233.180.0/27", + "20.233.180.112/28", + "20.233.180.176/28", + "20.233.180.240/28", + "20.233.181.208/28", + "20.233.184.128/26", + "20.233.185.64/28", + "20.233.186.128/27", + "20.233.186.192/27", + "20.233.214.192/28", + "20.233.76.64/28", + "20.38.158.120/29", + "20.46.193.40/29", + "20.46.193.88/29", + "20.46.43.128/29", + "20.74.162.48/28", + "20.74.163.160/28", + "40.120.112.128/27", + "40.120.112.176/28", + "40.120.112.192/27", + "40.120.112.96/28", + "40.120.65.136/29", + "40.120.78.240/29", + "40.123.218.63/32", + "40.123.220.0/23" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "uksouth", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "20.254.183.0/28", + "4.150.168.160/28", + "4.158.9.160/28", + "51.140.204.4/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "uksouth", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "172.186.21.248/29", + "172.186.24.0/28", + "172.186.31.34/31", + "20.108.135.16/28", + "20.108.88.224/28", + "20.108.90.64/28", + "20.162.170.80/28", + "20.162.184.0/29", + "20.162.184.72/29", + "20.162.184.96/29", + "20.162.185.48/29", + "20.254.87.64/28", + "20.26.137.124/30", + "20.26.144.248/29", + "20.26.144.56/29", + "20.26.148.96/29", + "20.26.155.192/27", + "20.26.156.224/28", + "20.26.156.48/28", + "20.26.156.64/28", + "20.26.157.240/28", + "20.26.187.144/28", + "20.26.187.208/28", + "20.26.187.80/28", + "20.26.188.144/28", + "20.26.188.160/28", + "20.26.188.192/26", + "20.26.188.96/27", + "20.26.189.160/27", + "20.26.189.192/27", + "20.26.189.224/28", + "20.26.189.32/27", + "20.26.189.96/27", + "20.26.190.128/26", + "20.26.190.16/28", + "20.26.190.192/27", + "20.26.190.32/27", + "20.26.190.64/26", + "20.26.191.0/27", + "20.26.191.128/26", + "20.26.191.192/27", + "20.26.191.224/28", + "20.26.250.32/28", + "20.26.251.176/28", + "20.26.251.192/27", + "20.26.251.64/26", + "20.26.253.64/28", + "20.26.254.240/28", + "20.26.254.32/28", + "20.26.255.160/28", + "20.26.29.184/29", + "20.26.44.160/28", + "20.26.63.176/28", + "20.26.70.80/28", + "20.26.88.64/29", + "20.50.110.160/29", + "20.77.189.128/28", + "4.158.14.48/28", + "4.158.15.144/28", + "4.158.15.160/27", + "4.158.15.96/27", + "4.158.9.160/28", + "4.234.50.240/28", + "4.234.51.144/28", + "4.234.51.176/28", + "4.234.52.32/28", + "4.234.54.0/28", + "4.234.54.112/28", + "4.234.54.128/27", + "4.250.233.0/27", + "4.250.235.0/27", + "4.250.236.96/28", + "4.250.3.0/30", + "51.132.195.36/30", + "51.137.160.120/29", + "51.140.151.184/30", + "51.140.203.27/32", + "51.140.90.0/23", + "51.141.67.0/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "ukwest", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "20.254.183.0/28", + "4.150.168.160/28", + "51.140.204.4/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "ukwest", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "172.186.21.248/29", + "172.186.24.0/28", + "172.186.31.34/31", + "172.187.18.0/23", + "20.117.0.176/28", + "20.117.0.192/27", + "20.117.0.64/28", + "20.117.40.64/28", + "20.117.41.0/28", + "20.162.13.176/28", + "20.162.29.192/26", + "20.45.180.64/28", + "20.45.186.160/28", + "20.45.189.0/28", + "20.68.119.208/28", + "20.68.122.64/29", + "20.68.124.32/29", + "20.90.20.80/28", + "20.90.46.144/28", + "20.90.54.16/28", + "20.90.56.96/29", + "20.90.57.192/28", + "20.90.58.176/28", + "40.81.116.16/28", + "40.81.116.160/28", + "40.81.124.224/28", + "51.104.62.128/29", + "51.11.109.96/29", + "51.11.115.152/29", + "51.11.117.0/28", + "51.137.160.120/29", + "51.137.186.176/29", + "51.140.203.27/32", + "51.141.67.0/28", + "51.142.149.64/29", + "51.142.162.136/29", + "51.142.170.40/29" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "usgovarizona", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "52.244.37.5/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "usgovvirginia", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "52.227.227.164/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "westcentralus", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "13.78.197.48/28", + "4.150.168.160/28", + "52.150.136.68/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "westcentralus", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "128.24.132.0/23", + "128.24.140.192/27", + "128.24.162.16/28", + "128.24.162.48/28", + "128.24.163.0/28", + "13.71.212.240/28", + "13.71.212.80/28", + "13.71.213.80/28", + "13.78.131.208/29", + "13.78.132.160/29", + "13.78.133.64/29", + "13.78.136.144/28", + "13.78.137.64/29", + "13.78.138.248/29", + "13.78.141.88/29", + "13.78.143.104/29", + "13.78.143.32/29", + "13.78.197.240/28", + "13.78.204.176/28", + "172.208.156.208/28", + "172.208.156.80/28", + "172.208.156.96/28", + "172.208.219.56/29", + "172.208.219.64/28", + "172.215.212.160/28", + "172.215.212.48/28", + "172.215.212.64/28", + "172.215.217.112/28", + "172.215.230.160/28", + "172.215.230.32/28", + "4.255.167.96/28", + "52.150.136.68/30", + "52.161.33.144/28", + "52.161.33.224/28", + "52.161.35.192/27", + "52.161.35.96/28", + "52.161.36.128/28", + "52.161.36.176/28", + "52.161.36.192/28", + "52.161.36.240/28", + "52.161.36.96/28", + "52.161.37.16/28", + "52.161.37.32/27", + "52.161.39.160/28", + "52.161.41.176/28", + "52.161.41.192/28", + "52.161.44.192/28", + "57.151.131.176/28", + "57.151.131.208/28", + "57.151.131.32/28", + "57.151.131.80/28", + "57.151.132.0/28", + "57.151.132.112/28", + "57.151.132.80/28", + "57.151.141.96/27", + "57.151.142.0/28", + "57.151.142.112/28", + "57.151.151.0/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "westeurope", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "20.103.219.240/28", + "4.150.168.160/28", + "40.74.30.80/32", + "52.232.19.246/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "westeurope", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "104.40.169.48/28", + "108.141.14.176/28", + "108.141.15.176/28", + "108.141.15.192/28", + "108.143.178.64/28", + "13.81.177.0/27", + "13.81.177.32/28", + "13.81.182.128/28", + "13.81.182.160/27", + "13.81.182.192/26", + "13.95.73.160/27", + "13.95.73.192/26", + "13.95.73.80/28", + "13.95.78.0/27", + "13.95.79.0/28", + "13.95.79.32/27", + "13.95.79.96/27", + "132.220.132.160/28", + "132.220.133.128/25", + "132.220.134.0/24", + "132.220.135.0/27", + "132.220.135.32/28", + "132.220.205.128/27", + "132.220.205.160/28", + "132.220.205.80/28", + "132.220.205.96/27", + "132.220.243.160/28", + "132.220.243.96/28", + "132.220.244.144/28", + "132.220.244.16/28", + "132.220.244.208/28", + "132.220.246.16/28", + "172.199.229.176/28", + "172.199.230.128/25", + "172.199.231.0/24", + "172.201.244.200/29", + "172.201.83.192/29", + "172.201.84.24/29", + "172.205.204.120/29", + "172.205.204.128/29", + "172.211.2.248/29", + "172.211.3.72/29", + "172.211.58.192/29", + "172.211.67.168/29", + "20.101.6.96/28", + "20.103.236.96/29", + "20.23.100.16/28", + "20.23.103.208/28", + "20.23.72.224/28", + "20.23.99.192/28", + "20.238.132.112/29", + "20.238.135.240/28", + "20.238.202.200/29", + "20.31.137.96/28", + "20.31.237.96/28", + "20.31.55.0/28", + "20.4.144.176/28", + "20.4.188.80/28", + "20.4.189.48/28", + "20.4.190.240/28", + "20.4.191.128/27", + "20.4.191.16/28", + "20.4.191.32/28", + "20.4.191.96/27", + "20.4.246.96/29", + "20.50.190.16/28", + "20.50.190.80/28", + "20.50.191.32/28", + "20.50.206.192/28", + "20.50.46.176/28", + "20.56.199.240/28", + "20.61.163.224/28", + "20.61.164.0/28", + "20.61.165.176/28", + "20.61.166.128/28", + "20.61.166.240/28", + "20.61.166.80/28", + "20.61.166.96/28", + "20.61.167.16/28", + "20.61.167.224/28", + "20.61.167.48/28", + "20.61.167.64/28", + "20.61.176.80/28", + "20.61.237.80/28", + "20.61.241.0/29", + "20.76.17.192/29", + "23.100.0.135/32", + "4.175.100.160/28", + "4.175.100.80/28", + "4.175.111.32/28", + "4.175.205.224/28", + "4.175.206.32/28", + "4.175.41.128/28", + "4.175.71.32/27", + "4.175.77.232/29", + "4.175.77.96/29", + "40.114.160.224/28", + "40.118.74.0/23", + "40.74.30.81/32", + "48.199.151.240/28", + "48.199.159.192/26", + "50.85.133.128/25", + "50.85.133.80/28", + "50.85.133.96/27", + "50.85.134.0/28", + "50.85.142.144/28", + "50.85.143.144/28", + "50.85.143.208/28", + "50.85.143.64/28", + "51.105.135.128/28", + "51.124.138.200/29", + "51.124.19.112/28", + "51.124.194.248/29", + "51.138.1.16/28", + "52.157.220.0/28", + "52.157.221.32/28", + "52.174.77.112/28", + "74.178.167.144/28", + "74.178.167.224/28", + "74.178.167.64/28", + "9.163.31.16/28", + "98.64.206.208/28", + "98.64.206.224/27", + "98.64.207.0/27", + "98.64.40.168/29", + "98.64.61.48/28", + "98.64.62.64/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "westindia", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "104.211.190.96/28", + "104.211.89.81/32", + "20.235.199.64/28", + "4.150.168.160/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "westindia", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "104.211.101.14/32", + "104.211.86.40/29", + "20.192.96.40/29", + "20.198.25.0/29", + "20.198.9.224/29", + "20.244.88.56/29", + "4.187.74.0/23", + "40.80.55.104/29", + "52.136.48.68/30", + "57.159.130.160/27", + "98.70.75.40/29", + "98.70.76.16/29", + "98.70.91.64/29" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "westus", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "13.91.180.32/28", + "4.150.168.160/28", + "40.118.174.12/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "westus", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "104.209.2.128/28", + "104.209.3.112/28", + "104.209.3.144/28", + "104.209.3.80/28", + "104.209.9.192/28", + "104.40.21.16/29", + "104.40.27.80/29", + "104.40.30.112/29", + "104.40.37.64/28", + "104.40.39.160/29", + "104.42.197.32/29", + "104.42.79.128/29", + "13.64.52.208/29", + "13.83.105.176/28", + "13.83.107.112/28", + "13.83.164.176/28", + "13.83.164.192/28", + "13.83.219.176/28", + "13.83.220.0/28", + "13.83.34.0/23", + "13.86.187.112/28", + "137.116.190.24/29", + "137.135.27.176/28", + "137.135.54.160/29", + "138.91.150.48/28", + "138.91.168.120/29", + "138.91.171.48/28", + "138.91.176.96/29", + "138.91.228.80/28", + "138.91.230.160/28", + "138.91.231.208/28", + "138.91.231.32/28", + "138.91.231.80/28", + "138.91.71.48/28", + "138.91.88.152/29", + "138.91.89.152/29", + "138.91.95.80/29", + "157.56.164.40/29", + "168.61.17.72/29", + "168.61.68.104/29", + "168.61.77.248/29", + "168.61.78.88/29", + "172.178.135.208/28", + "172.178.140.208/28", + "172.178.240.192/26", + "172.178.242.0/25", + "172.184.142.128/28", + "172.184.150.32/28", + "172.184.166.32/28", + "172.184.182.48/28", + "172.184.182.64/28", + "172.184.189.112/28", + "172.184.206.112/28", + "172.184.221.48/28", + "172.184.237.80/29", + "172.184.238.112/28", + "172.184.238.176/28", + "172.184.239.0/28", + "172.185.151.64/28", + "172.185.158.32/27", + "172.185.167.48/28", + "172.185.167.96/28", + "172.185.174.128/28", + "172.185.22.96/28", + "172.185.94.160/28", + "20.168.158.160/28", + "20.184.133.128/25", + "20.184.133.80/28", + "20.184.133.96/27", + "20.184.134.0/25", + "20.184.134.128/26", + "20.184.134.192/28", + "20.184.141.208/28", + "20.184.182.128/25", + "20.184.182.32/27", + "20.184.182.64/26", + "20.184.183.0/25", + "20.184.183.128/28", + "20.184.190.144/28", + "20.189.184.240/28", + "20.237.235.64/28", + "20.245.51.192/28", + "20.253.174.160/28", + "20.57.198.112/28", + "20.57.198.192/28", + "20.57.214.224/28", + "20.57.214.80/28", + "20.57.214.96/27", + "20.59.112.48/29", + "20.66.115.112/28", + "20.66.115.128/27", + "20.66.115.16/28", + "20.66.115.80/28", + "20.66.31.160/28", + "23.99.13.80/28", + "40.75.131.160/28", + "40.75.139.96/28", + "40.78.51.104/29", + "40.82.248.112/28", + "40.83.178.242/32", + "40.83.196.192/29", + "40.85.154.0/29", + "40.86.160.216/29", + "52.137.190.0/27", + "52.137.190.176/28", + "52.137.190.48/28", + "52.155.61.96/28", + "52.157.10.0/27", + "52.157.10.32/28", + "52.157.12.144/28", + "52.157.13.144/28", + "52.157.13.16/28", + "52.157.13.160/27", + "52.157.13.192/27", + "52.157.13.64/27", + "52.157.14.208/28", + "52.157.14.64/28", + "52.157.15.112/28", + "52.157.15.64/28", + "52.157.8.48/28", + "52.157.9.208/28", + "52.159.140.240/28", + "52.159.141.160/28", + "52.159.144.32/27", + "52.159.144.64/28", + "52.159.148.224/27", + "52.159.148.80/28", + "52.159.231.240/28", + "52.160.131.128/25", + "52.160.131.16/28", + "52.160.131.32/27", + "52.160.131.64/26", + "52.160.145.224/28", + "52.160.147.128/28", + "52.160.147.160/28", + "52.160.147.80/28", + "52.160.148.0/28", + "52.160.148.80/28", + "52.160.167.96/27", + "52.190.181.32/28", + "52.190.181.64/28", + "52.190.187.128/28", + "52.190.194.176/28", + "52.190.195.0/28", + "52.190.195.144/28", + "52.190.195.192/28", + "52.190.196.96/28", + "52.190.198.16/28", + "52.225.33.144/28", + "52.225.33.160/28", + "52.225.33.224/28", + "52.225.34.112/28", + "52.225.34.128/28", + "52.225.34.160/28", + "52.225.34.208/28", + "52.225.34.224/27", + "52.225.35.0/27", + "52.225.35.32/28", + "52.225.35.80/28", + "52.225.35.96/28", + "52.225.36.128/28", + "52.225.36.176/28", + "52.225.36.208/28", + "52.225.36.224/27", + "52.225.36.48/28", + "52.225.36.64/27", + "52.225.37.0/27", + "52.225.37.160/27", + "52.225.37.240/28", + "52.225.37.32/28", + "52.225.38.192/28", + "52.225.39.160/28", + "52.225.53.48/28", + "52.225.53.96/28", + "52.234.29.64/29", + "52.234.29.88/29", + "52.234.32.64/28", + "52.234.32.96/28", + "52.234.33.0/28", + "52.234.33.192/28", + "52.234.36.16/28", + "52.234.36.176/28", + "52.234.36.80/28", + "52.234.37.0/28", + "52.234.37.80/28", + "52.234.37.96/28", + "52.234.38.0/28", + "52.234.38.144/28", + "52.234.38.48/28", + "52.234.38.96/28", + "52.238.24.48/28", + "52.238.28.64/28", + "52.241.146.32/28", + "52.250.210.32/28", + "52.250.240.192/28", + "57.154.162.160/28", + "57.154.166.192/28", + "57.154.166.32/27", + "57.154.180.112/28", + "57.154.186.224/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "westus2", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "13.91.180.32/28", + "20.42.129.160/32", + "20.59.51.96/28", + "4.150.168.160/28", + "40.118.174.12/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "westus2", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "172.178.240.192/26", + "172.178.242.0/25", + "172.193.246.208/28", + "172.193.246.224/27", + "172.193.247.0/26", + "172.193.247.64/28", + "20.109.130.16/29", + "20.109.135.64/28", + "20.115.172.144/28", + "20.115.219.72/29", + "20.120.130.72/29", + "20.125.10.112/29", + "20.252.106.152/29", + "20.252.108.240/28", + "20.252.110.128/27", + "20.252.110.176/28", + "20.252.110.192/27", + "20.252.118.0/28", + "20.252.118.128/28", + "20.252.118.208/28", + "20.252.119.16/28", + "20.252.119.176/28", + "20.252.119.192/28", + "20.252.119.224/27", + "20.252.119.48/28", + "20.252.119.64/27", + "20.252.119.96/28", + "20.252.127.192/28", + "20.252.127.224/28", + "20.29.131.216/29", + "20.42.129.161/32", + "20.51.77.240/28", + "20.51.78.112/28", + "20.51.84.208/28", + "20.51.84.48/28", + "20.59.1.224/29", + "20.59.7.176/28", + "20.59.7.224/27", + "20.64.190.16/28", + "20.64.191.160/27", + "20.64.191.240/28", + "20.64.191.80/28", + "20.64.195.88/29", + "20.80.151.128/28", + "20.80.151.16/28", + "20.80.151.192/28", + "20.83.195.184/29", + "20.83.76.160/27", + "20.83.76.192/27", + "20.83.76.224/28", + "20.83.76.80/28", + "20.99.167.136/29", + "20.99.231.176/28", + "20.99.231.224/27", + "4.149.164.208/28", + "4.149.165.192/27", + "4.149.166.128/26", + "4.149.166.192/27", + "4.149.166.224/28", + "4.149.167.0/27", + "4.149.167.128/27", + "4.149.167.160/28", + "4.149.167.208/28", + "4.149.167.224/27", + "4.149.167.96/27", + "4.149.179.64/27", + "4.149.188.80/28", + "4.149.215.176/28", + "4.149.215.224/28", + "4.149.240.248/29", + "4.149.78.160/27", + "4.149.78.192/28", + "4.149.78.80/28", + "4.149.79.0/28", + "4.149.79.32/28", + "4.242.19.240/29", + "4.246.19.192/27", + "4.246.47.0/28", + "4.246.47.48/28", + "4.246.47.64/28", + "40.64.109.200/29", + "40.64.116.136/29", + "40.82.248.112/28", + "40.83.178.242/32", + "40.91.82.72/29", + "51.143.26.0/23", + "52.156.144.120/29", + "52.233.97.112/29" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "westus3", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "20.150.160.106/32", + "4.150.168.160/28", + "4.227.68.192/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "azure", + "region": "westus3", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "135.234.4.0/23", + "172.173.16.208/29", + "172.173.24.184/29", + "20.118.178.144/29", + "20.125.64.240/28", + "20.125.64.8/29", + "20.125.65.192/28", + "20.125.67.208/28", + "20.125.68.64/28", + "20.125.69.160/28", + "20.125.69.56/29", + "20.125.70.192/27", + "20.125.70.224/29", + "20.14.10.48/28", + "20.14.14.224/28", + "20.14.14.32/28", + "20.14.59.144/28", + "20.14.60.192/28", + "20.14.60.64/28", + "20.14.60.96/28", + "20.14.61.48/28", + "20.14.8.32/28", + "20.150.160.104/32", + "20.150.227.200/29", + "20.150.249.248/29", + "20.163.2.88/29", + "20.163.3.56/29", + "20.163.31.104/29", + "20.168.96.112/29", + "20.168.96.96/29", + "20.169.49.96/29", + "20.171.230.128/28", + "20.171.231.32/28", + "20.25.169.176/29", + "20.25.169.64/28", + "20.25.173.64/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "gcp", + "region": "asia-northeast1", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "34.146.146.176/28", + "34.146.235.35/32", + "34.8.0.0/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "gcp", + "region": "asia-northeast1", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "34.146.146.176/28", + "34.146.86.3/32", + "35.230.246.0/24" + ], + "ipv6Prefixes": [] + }, + { + "platform": "gcp", + "region": "asia-south1", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "34.100.245.214/32", + "34.47.163.96/28", + "34.8.0.0/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "gcp", + "region": "asia-south1", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "34.47.129.0/24", + "34.47.163.96/28", + "34.93.172.236/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "gcp", + "region": "asia-southeast1", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "34.126.133.240/32", + "34.143.162.160/28", + "34.8.0.0/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "gcp", + "region": "asia-southeast1", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "34.143.162.160/28", + "34.87.145.17/32", + "35.234.207.0/24" + ], + "ipv6Prefixes": [] + }, + { + "platform": "gcp", + "region": "australia-southeast1", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "34.40.128.0/28", + "34.8.0.0/28", + "35.244.88.131/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "gcp", + "region": "australia-southeast1", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "34.40.128.0/28", + "34.40.166.0/24", + "34.87.224.132/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "gcp", + "region": "europe-west1", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "34.38.159.16/28", + "34.8.0.0/28", + "35.190.193.117/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "gcp", + "region": "europe-west1", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "34.38.159.16/28", + "34.52.129.0/24", + "35.187.166.222/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "gcp", + "region": "europe-west2", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "34.39.0.32/28", + "34.8.0.0/28", + "34.89.123.127/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "gcp", + "region": "europe-west2", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "34.105.190.3/32", + "34.39.0.32/28", + "34.39.36.0/24" + ], + "ipv6Prefixes": [] + }, + { + "platform": "gcp", + "region": "europe-west3", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "34.159.208.230/32", + "34.8.0.0/28", + "34.89.210.112/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "gcp", + "region": "europe-west3", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "34.89.210.112/28", + "35.198.69.110/32", + "35.235.43.0/24" + ], + "ipv6Prefixes": [] + }, + { + "platform": "gcp", + "region": "me-central2", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "34.166.168.240/28", + "34.8.0.0/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "gcp", + "region": "me-central2", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "34.166.168.240/28", + "34.166.35.42/32", + "35.252.32.0/24" + ], + "ipv6Prefixes": [] + }, + { + "platform": "gcp", + "region": "northamerica-northeast1", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "34.118.158.176/28", + "34.152.60.53/32", + "34.8.0.0/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "gcp", + "region": "northamerica-northeast1", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "34.118.158.176/28", + "34.152.10.135/32", + "34.19.128.0/24" + ], + "ipv6Prefixes": [] + }, + { + "platform": "gcp", + "region": "southamerica-east1", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "34.39.157.192/28", + "34.8.0.0/28", + "35.198.61.240/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "gcp", + "region": "southamerica-east1", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "34.39.157.192/28", + "34.95.225.209/32", + "35.235.1.0/24" + ], + "ipv6Prefixes": [] + }, + { + "platform": "gcp", + "region": "us-central1", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "34.128.32.16/28", + "34.72.196.197/32", + "34.8.0.0/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "gcp", + "region": "us-central1", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "34.123.97.237/32", + "34.128.32.16/28", + "34.33.0.0/24" + ], + "ipv6Prefixes": [] + }, + { + "platform": "gcp", + "region": "us-east1", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "34.138.66.176/28", + "34.139.33.52/32", + "34.8.0.0/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "gcp", + "region": "us-east1", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "34.138.66.176/28", + "34.23.162.0/24", + "35.196.217.150/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "gcp", + "region": "us-east4", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "34.145.222.16/28", + "34.8.0.0/28", + "34.86.133.227/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "gcp", + "region": "us-east4", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "34.145.222.16/28", + "34.48.82.0/24", + "35.186.178.4/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "gcp", + "region": "us-west1", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "34.118.194.80/28", + "34.8.0.0/28", + "35.185.196.216/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "gcp", + "region": "us-west1", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "34.118.194.80/28", + "34.168.98.0/24", + "34.82.78.230/32" + ], + "ipv6Prefixes": [] + }, + { + "platform": "gcp", + "region": "us-west4", + "service": "Databricks", + "type": "inbound", + "ipv4Prefixes": [ + "34.125.26.53/32", + "34.16.224.32/28", + "34.8.0.0/28" + ], + "ipv6Prefixes": [] + }, + { + "platform": "gcp", + "region": "us-west4", + "service": "Databricks", + "type": "outbound", + "ipv4Prefixes": [ + "34.125.175.166/32", + "34.16.224.32/28", + "34.50.160.0/24" + ], + "ipv6Prefixes": [] + } + ] +} \ No newline at end of file diff --git a/docs/output/SHA256SUMS b/docs/output/SHA256SUMS index 7622481..71530c4 100644 --- a/docs/output/SHA256SUMS +++ b/docs/output/SHA256SUMS @@ -1,120 +1,299 @@ 5825dc0069b286d9514a326080847bbbbc9d17d74c1743cd7436bdd41889a639 all-inbound.txt 6f28dda815cada40826f041620aeece303bb98dd10be436097e94fc4965f35f5 all-outbound.txt 425bd8b2ce09e4348f0e428b0d36c04b242f76d01eb51a9961682b882d29634f all.txt +b06529c1c2f0305eb325f28a32d8f5e47f8f4c0616e716b5f25bd7f459f5aba9 aws-ap-northeast-1-inbound.txt +298b583f944794b81ceb7958bedc27e5da4395b379aa106359b1a71a7942b484 aws-ap-northeast-1-outbound.txt b0aae5a5b1759420d7c72e62efff0ec78c18a4b52e78db025b6b1209cadee1e0 aws-ap-northeast-1.txt +56ee78a06aa6111353333ce591a6a5bf3ee333be71e6ac565732269688ec216c aws-ap-northeast-2-inbound.txt +1c5b327353e4b16b58549af2853dbcbb5ac00a5fd81ddb8f9910afa3fa9f1d74 aws-ap-northeast-2-outbound.txt 66ca05288245c57d28037982b6045217163f4bfbf93700ebb53a3dfae25a8b08 aws-ap-northeast-2.txt +ee8574a7fa403ca391b0b346779c30d504c28ce194e10731db9d9841320f7375 aws-ap-south-1-inbound.txt +0f7616b8596745706f94b1c9c14a886449a705b099fb1c0acbf84958c873547e aws-ap-south-1-outbound.txt d324a0338ac54e4a32b18274c1a56830217ab57ad1e1ffbe8d64dd22f31e9894 aws-ap-south-1.txt +54210dc28b9ba0cf4870af0f01a9408be721c37e2755889ac13b888acbe609d4 aws-ap-southeast-1-inbound.txt +14359c4885462f8e4cc820a9feeba4bec1b83f9d5d6f0417b7614df2d065f7e6 aws-ap-southeast-1-outbound.txt cf4b454c58c01059505373708f80747265df2a7ebc5c5e708606dcb36b68e77a aws-ap-southeast-1.txt +b4ee3a2b365fa6e1064afbd3011e520b0d8a91e67bb9cc34bb79bf2b76890004 aws-ap-southeast-2-inbound.txt +cdabb3c360ce7ee90474d6a6edeac3bc6c35ebf67d1ebbd34e6cabfdd067675e aws-ap-southeast-2-outbound.txt a973dabe7793ce80f9c75aa270f5bb2a14f719284b7346d2aa3768a2e47b59b4 aws-ap-southeast-2.txt +fe22d0caeea5fcded8aea4b8c44c996e026ed3913baa652453d053f8e05dd63c aws-ap-southeast-3-inbound.txt +a825072a6db9052477b49f10500d2596634ad51f706a04ff035fd0b8a89c266b aws-ap-southeast-3-outbound.txt e6a7cce50f360f7fff068a31e828672aea011ed4cc8397ff52b63d4d753cc2d5 aws-ap-southeast-3.txt +594939f48becb1c5b5b66ab9063d459c8d59baa6f8819101d7882de6efb18acf aws-ca-central-1-inbound.txt +a39924f41067fbf1b48de52599e49499c11de1347f074977e4072750355acc2d aws-ca-central-1-outbound.txt 16049d29efeeff6d10fb3c34411bf05170817adb87358a600f62856d7b0c7c1b aws-ca-central-1.txt +367e5fa44d7f3f347fcf58307f002f4f80ba7ffe20d93813e23760b40de21caf aws-eu-central-1-inbound.txt +f64dfe27670618a641ba2e40d5a200af1b24100fcf5a79054aa7a2f066372594 aws-eu-central-1-outbound.txt de2c7cb08132d4a03e7c7d8a124baf67561426ee3e773cf3fa25576e4f8a0e45 aws-eu-central-1.txt +3b812c1d015f68a380722c083b922188bed2e4f07d288bff37b961c5a761e53f aws-eu-north-1-outbound.txt 3b812c1d015f68a380722c083b922188bed2e4f07d288bff37b961c5a761e53f aws-eu-north-1.txt +1f238185c0d9b3e29c3064f73bceeabe2fb283450edccac12ba0c0bb97088ce5 aws-eu-west-1-inbound.txt +1c28378d03f1550db5698e55f3202d30070549fa9463b819b9d31e5d60d62c34 aws-eu-west-1-outbound.txt 13b436c3e3e60437746422429e4a46e8ea965bbf67074c9e53107e6126be5ff2 aws-eu-west-1.txt +2aaad03bf1e7cfa980d94012a2693e8c778d43c84c40385eaee55f01c7e20a89 aws-eu-west-2-inbound.txt +a192c1aa558fa47dd5c524ec2b3178d7145f66bcbb6f861d09677e33f62f3d7d aws-eu-west-2-outbound.txt 98f70b55f608fa00ae9fc30652484cb947bb655ad2b0f3bbb3c969e1b4a74713 aws-eu-west-2.txt +c241754af8d51c5116f13cf6e4f1600116ea389d6e1ccb2c6cbc29f9a003f5af aws-eu-west-3-inbound.txt +e51862a03e5cf7e8ec2eaa155453880d33015632374ef7858cc5240f8a970e20 aws-eu-west-3-outbound.txt 803690dfe6b2cd40c647f37ad3bef36981d6d813352a1c51f0f42eff7a31d355 aws-eu-west-3.txt d2e67ed076d8c36353b2483c87b8c0eb1d53530121957d2f7bc7d70262b950f4 aws-inbound.txt 0d68405388e953a94d18b5685c23c5d1826883f21b000460dd4fcbbfa84365a6 aws-outbound.txt +d86f6c8898c568725040e9862b7f57a8dc2808601ff0d05ec8a8d19a4e84990a aws-sa-east-1-inbound.txt +99845d95d9f4103f6cc68a7d6b7b6b0e0935b1206baad7775af3c452c3b17342 aws-sa-east-1-outbound.txt 3826cf39b2d27aacbdedf38f23847ab5c58f0546b6fcf74197d5ddc5f0b6dec1 aws-sa-east-1.txt +83fba76c2c20f9b4f78d637e1ee548ec4fbd7d5ff8b4838f302ee0c027f3e9f3 aws-us-east-1-inbound.txt +9789ae3a5f342d18b58a05a57ed527a4dbb953a99c288084a93c8c78996e3cc6 aws-us-east-1-outbound.txt e93fb1c2b25a7f89c0022ff36d79145b3256ee74f549f19aef65337a2a02187c aws-us-east-1.txt +50b060b3dbb89a3b4e7a156697008ecb52cbbd9b1ab6dfdfd6da2212d5358748 aws-us-east-2-inbound.txt +0824f285859956010ea6f3e7404277e64fb1539789078bfa972d20471d36e5f3 aws-us-east-2-outbound.txt a9fd2fd2da73594c6a51cdccd8202c7c6ee35d0c5c38bb4c94c0b6ab8aed0cae aws-us-east-2.txt +ef382cf4668309c45aefb45a47b0dada358c236c8e0485d20a2f7942e94fff7c aws-us-gov-west-1-inbound.txt +ba6bf452a8f85d55c297df8ae319161ad4387978d094cea9408dfe3513456a97 aws-us-gov-west-1-outbound.txt ba6bf452a8f85d55c297df8ae319161ad4387978d094cea9408dfe3513456a97 aws-us-gov-west-1.txt +8578b31a5cc3a730eb189ec3bbe0e71b2f124402551bbb24e53a7efe8cc048d0 aws-us-west-1-inbound.txt +df7e81845fcb1ce4b824fac8e273d6d05bf7dc6b3c378669569e9af567f6e515 aws-us-west-1-outbound.txt dfcc743d1d2c765c3c600c50dae387394b796da229355a6ff85e2ec8817151f0 aws-us-west-1.txt +42c3ed89d31ab912de4fe87aec26c92cbb37a10ba5693b6d919396156f046045 aws-us-west-2-inbound.txt +d8ebf88372e1c937123cae303070622815fcc067335fedab6abdc1c592886629 aws-us-west-2-outbound.txt f4d20990757934e45ef4cdb50811c80f6dc5e44fc666c85969aeaa126f36947d aws-us-west-2.txt 5350fa78b41d385bad2598a6ce396d0e693ebb673e4661901d1189f0716166e9 aws.txt +2168b0e6d49518f0edc67adb2a6ce168294449db04a1a473374fcb09b283ebca azure-australiacentral-inbound.txt +3e5d3fe824cd832b36053efb12cdad1fe2d9aa87f328d0c6503b6a4dbd598d7a azure-australiacentral-outbound.txt b90ed23b1f98dc021696cdd2afdaee17451595f9d20a6349941f0781be0208bc azure-australiacentral.txt +a5f093b9b0a7d6222034d362febe88b5343f21b12245113eb31e371ffff75ece azure-australiacentral2-inbound.txt +bbcc787c7ee1373fd139fb066c42b3983d722699ba51ac0341364ef743b6f9e6 azure-australiacentral2-outbound.txt bb66ff9a9c23f6bb2e887a709501707be07fc4d71b9e188c02302762add3e19b azure-australiacentral2.txt +5a0f5baac20a6989630aac0ca5285672024e660e80e62a68454dbf2a0c12e34e azure-australiaeast-inbound.txt +2823fd7fe30e12053f2813ee6aacd7f65b23ee34b1efbc584f06cf5cf89a2d9b azure-australiaeast-outbound.txt 836a83c5ff8cecea9e150aba710b3e403915dbc30a1ca13966644ca7acbdbacb azure-australiaeast.txt +c6231b6c7c964cdeac0d94a4d0427ef4250557ca3ce4e2ad169c7f091196613a azure-australiasoutheast-inbound.txt +e452857aeddec09b801704a0d543a5a943f7a3691f2a0904c0bfd9d0dea33335 azure-australiasoutheast-outbound.txt 299f3baa7d08c5551d4081f2fb81087ad7672dbb886dc60d44560041682c53f7 azure-australiasoutheast.txt +0a4083fbe15c4c446c37879aec38467cdc32b0c6aed6da5c28d0d3aecfde0bbf azure-austriaeast-outbound.txt 0a4083fbe15c4c446c37879aec38467cdc32b0c6aed6da5c28d0d3aecfde0bbf azure-austriaeast.txt +f60ccfa1b7b8a4676eea913b72eb15855a3d35de934712461377fc701a256e86 azure-belgiumcentral-outbound.txt f60ccfa1b7b8a4676eea913b72eb15855a3d35de934712461377fc701a256e86 azure-belgiumcentral.txt +0ea43706295f4f50e675cb5131d75327aa890e579d94e993d6e2b901b8901c8d azure-brazilsouth-inbound.txt +f3d82f632a41195ec0ccb94b6f2886be931993c30ebdaf48d9474f3df55cf3ae azure-brazilsouth-outbound.txt 54940b44f3cb2654c5b95fc48a4960f30e3fe5de27db34c394b931dc758831ed azure-brazilsouth.txt +07f1a649e233f5aec2bef7f86766438dbb28e6c4929988e0786d4812bc5ee6ea azure-brazilsoutheast-outbound.txt 07f1a649e233f5aec2bef7f86766438dbb28e6c4929988e0786d4812bc5ee6ea azure-brazilsoutheast.txt +7e627c1a9fae290d994058b5639bdc5c73e28ac27c537336e0efb4d934084950 azure-canadacentral-inbound.txt +fd46ba493a1015bd4047820ef40912988040ca3cdaaac03f452810d65e931a4b azure-canadacentral-outbound.txt 0975ccd427f17febade6e5e5cb30af4d758feb1454dc7f167d11f38502b3f0d7 azure-canadacentral.txt +1f5df4e152cb8695e99e556355f65d5ef6427f4fd6363269ac28fd61b8e9c6a9 azure-canadaeast-inbound.txt +fc4109758aecb2bb6508530ac4e687b7e4860131696e5d0296b2246bcfe8c067 azure-canadaeast-outbound.txt f94d77f54aaa1ece6215389442e928ba6c920555f4f12da6c18bcc9ccebb3171 azure-canadaeast.txt +1890f29c35909733049e82d2615720976c6c52b98177c3e8c68bf9715a03e6f0 azure-centralindia-inbound.txt +62eda5297a78512f42414800de42e8f690221b27f20d63791375652a47f3793c azure-centralindia-outbound.txt b6c402938b7ef85f38f0dcbed6a7727dd44e2c058f5367cd57cf3ceafb0440a7 azure-centralindia.txt +c634100def3e15ee472c699621b6a8f0b3dae5a3f14ffca59a4288869c4249b9 azure-centralus-inbound.txt +fe603eb4885362b7a1fc8ebf1456d5019242e49dfc11c4e5925a668f27192316 azure-centralus-outbound.txt 9da2cb7d13b619b3393842cfd1e0866939aba859a4e14e261209db6bdd951c45 azure-centralus.txt +ab366f16b8449d107d93f18ef7fbc94fffc1deadd2ee9c64e7a6eabb1bb0b021 azure-centraluseuap-outbound.txt ab366f16b8449d107d93f18ef7fbc94fffc1deadd2ee9c64e7a6eabb1bb0b021 azure-centraluseuap.txt +3ba351251c035047d534e25491656c5389cc89460959a39719e1c78774b77506 azure-chilecentral-outbound.txt 3ba351251c035047d534e25491656c5389cc89460959a39719e1c78774b77506 azure-chilecentral.txt +6ee63cc084f5ca5c158b17c8d35766712d574a00dc59edd243f87c1a6dfae288 azure-chinaeast2-inbound.txt 6ee63cc084f5ca5c158b17c8d35766712d574a00dc59edd243f87c1a6dfae288 azure-chinaeast2.txt +06e714d2bad8583deff1d06dce743609159194c95b08fc9de06277b0658d8bea azure-chinaeast3-inbound.txt 06e714d2bad8583deff1d06dce743609159194c95b08fc9de06277b0658d8bea azure-chinaeast3.txt +c036bf7cfdfd4d2957d77f537fed790450ea484bb2012e483f3aa65166ba0c14 azure-chinanorth2-inbound.txt c036bf7cfdfd4d2957d77f537fed790450ea484bb2012e483f3aa65166ba0c14 azure-chinanorth2.txt +67af9bba66273123e35d9b13540508b711b9499fe06d9836fef7c68e73df8e2b azure-chinanorth3-inbound.txt +e446b7a419a1920f730778a2484de737ca58756961e0c90f8b8155b28d95f241 azure-chinanorth3-outbound.txt 03356cd13761c219289d88cf5d028e09e992e9c51219f97e2ed8bd28db632c00 azure-chinanorth3.txt +e761195f41de13ddb5f33974f9bd795914c6e8e51a27fcf5e6fcf08c5ddd5027 azure-denmarkeast-outbound.txt e761195f41de13ddb5f33974f9bd795914c6e8e51a27fcf5e6fcf08c5ddd5027 azure-denmarkeast.txt +e3bf684f2e1d50db01599144ada07bfb5e02e1c4a39e99ad5f97f53a739cb55a azure-eastasia-inbound.txt +e8e0e55db6084dfde949d592315ea3e6909cfb460a43ab54387fb7f9f7c58f49 azure-eastasia-outbound.txt 674b3d84becf1ffeaa13cadec83346b55123eb9b78a962f7484be1f2295c0bc2 azure-eastasia.txt +9f4e8e4641130026c2a3670edc262f8768bc7e866b39071cf7d73de7dc9b9010 azure-eastus-inbound.txt +b856d713e15f0e8c85c9d35944a8567cff789c912009d456f5a92c2f2d81aba8 azure-eastus-outbound.txt e73742322d50ed60d0527442928cc3827b6bf0320719e7d0a84589407cdf32bf azure-eastus.txt +c146aac9c50e079fd4f3799a9365c1ee7d4885eb844abfcccbe86374372416de azure-eastus2-inbound.txt +4002109f8768294e59a9ef43d9a45893b222baa9da66f2f0873850182f9c71a6 azure-eastus2-outbound.txt 7f600a406ac5cfc6cac4f979d894034783b2dac67d5c2ce49db52131698b92a2 azure-eastus2.txt +b594d389cbc5814aad3ed76dbb56d2474c9dd3e2a47cfa0bec829425e716bd7c azure-eastus2euap-outbound.txt b594d389cbc5814aad3ed76dbb56d2474c9dd3e2a47cfa0bec829425e716bd7c azure-eastus2euap.txt +8c8d2debdebbf727f9d757b50a5470785097b40dc1a6d136ad231ae0f683d2c1 azure-eastus3-outbound.txt 8c8d2debdebbf727f9d757b50a5470785097b40dc1a6d136ad231ae0f683d2c1 azure-eastus3.txt +a802c543c84d5b47036b31b8223b35316f20b5608eacaccf599dd911f22468b0 azure-francecentral-inbound.txt +54c97b280c50f20536c3c887342dda3444d31d53b8022b244fbe4696934b91aa azure-francecentral-outbound.txt e6ae05632179f6dc60c950cabc540ea9efe735b648fdc60769bb52a24c3cfa68 azure-francecentral.txt +9f91be1ed0487277e7e6696dbca1a0858847e82314aef685980be0cf46802474 azure-francesouth-outbound.txt 9f91be1ed0487277e7e6696dbca1a0858847e82314aef685980be0cf46802474 azure-francesouth.txt +80361509ef45764fd290fdd337a1050ecf9fa2767cfeedb6a9c9a8b41a74d29b azure-germanynorth-outbound.txt 80361509ef45764fd290fdd337a1050ecf9fa2767cfeedb6a9c9a8b41a74d29b azure-germanynorth.txt +5145cebdc4fe90908064d661b1d4847f2d4232c09eb1cb9cab1f433467e0a3f4 azure-germanywestcentral-inbound.txt +1f914398b305f64b02250850539df19412e60e43801dbcbd2584697fcbd7cff7 azure-germanywestcentral-outbound.txt 04c82f71e290b23dc348d2bca875e2b22d14b61d8d1ff38a5fcd4c752d69eef0 azure-germanywestcentral.txt e688a99099509ce08a111a661d96bcd062fcbefc322fd46dacc41edf6a2fa23d azure-inbound.txt +2f85ab147e01a4cea082b6eb0b625b93fec0337b06cd5f0a42c9b2632e79aea9 azure-indonesiacentral-outbound.txt 2f85ab147e01a4cea082b6eb0b625b93fec0337b06cd5f0a42c9b2632e79aea9 azure-indonesiacentral.txt +8129c291fdfeb937c642ef6fe1393fb1f9b044a8a3d09e5bf9a6c84f3022cb48 azure-israelcentral-outbound.txt 8129c291fdfeb937c642ef6fe1393fb1f9b044a8a3d09e5bf9a6c84f3022cb48 azure-israelcentral.txt +f3059bc6444e923643bbc1020c9f06ad0147e88db1a24c0d610c246873d87cd9 azure-israelnorthwest-outbound.txt f3059bc6444e923643bbc1020c9f06ad0147e88db1a24c0d610c246873d87cd9 azure-israelnorthwest.txt +b276711cb8583f2215ec5108fb747948d19bdf8737435fb9517617bd948f4fd4 azure-italynorth-outbound.txt b276711cb8583f2215ec5108fb747948d19bdf8737435fb9517617bd948f4fd4 azure-italynorth.txt +f9230655e0cd7b323db4a36ef52925c5097e94134718b78bc1bac9373b71757b azure-japaneast-inbound.txt +b5f396448e7be94b09c2d4d9a09d94f0730fb5ed08d23c74b60c08465bb6ed2d azure-japaneast-outbound.txt 838a15fce1eda988302782a78ed9178124bbdb6e87fd0041060f743ddbdddacf azure-japaneast.txt +1b43b1052a28a8a75aa2b0f2e7a41345921609d0e7c083416782eb9a17e43fca azure-japanwest-inbound.txt +03696b39f2ccf903775a353d35e20f358967c95a50e9666d600903d8c6781b28 azure-japanwest-outbound.txt 4c4b68ac69d2aa6fa22f09cb24977b9c9960a1f43c76155f6740202c90eee9ee azure-japanwest.txt +441e536b6d8afae344d1f53665ac438fe74423ded157268972d474ae7ed07c3e azure-jioindiacentral-outbound.txt 441e536b6d8afae344d1f53665ac438fe74423ded157268972d474ae7ed07c3e azure-jioindiacentral.txt +b1247cb212d881bcfee8010a114aee3c3f12caed6c760c939c87d312d1eb2509 azure-jioindiawest-outbound.txt b1247cb212d881bcfee8010a114aee3c3f12caed6c760c939c87d312d1eb2509 azure-jioindiawest.txt +090be7f11f755d22de05ac481f8772526ea667914f3dd64366fd10cf1b87dfe0 azure-koreacentral-inbound.txt +25f15f9f476bea452ecc204caeabe95ee1d647defaa91714d69632d0cb3a265d azure-koreacentral-outbound.txt e1caa658b0312f25d921f099e4e077ff6872e4030031fb08468ddb5c482e16b4 azure-koreacentral.txt +94ee08a01ff37f8bfbcc370140ccdb8a039a4e71ce366eb3e99e9513979dd206 azure-koreasouth-outbound.txt 94ee08a01ff37f8bfbcc370140ccdb8a039a4e71ce366eb3e99e9513979dd206 azure-koreasouth.txt +f208026290896054d55f6975c623ea54471ca53c492ea370e43f027746a473a5 azure-malaysiasouth-outbound.txt f208026290896054d55f6975c623ea54471ca53c492ea370e43f027746a473a5 azure-malaysiasouth.txt +f42c38a84299114a87c1da653d4cb65d3cb2d0d3cedcf2ce5752f54c61867300 azure-malaysiawest-outbound.txt f42c38a84299114a87c1da653d4cb65d3cb2d0d3cedcf2ce5752f54c61867300 azure-malaysiawest.txt +49ab7a6ce8cf5faba2005ea728b0ee133b9d7ac4e280a0f0953d360a4a622d03 azure-mexicocentral-inbound.txt +025e4ecf6f2da1040f45f4ceb5f811b28f3a10157581a7edfff587133d4d8273 azure-mexicocentral-outbound.txt e355e256f5f486b557f24020c658c8e0bfc54c7d9281a052e526037a8d76e7a3 azure-mexicocentral.txt +da4daad5d86721f416849c0406724075860b3c86418a39d4baf762f92653d509 azure-newzealandnorth-outbound.txt da4daad5d86721f416849c0406724075860b3c86418a39d4baf762f92653d509 azure-newzealandnorth.txt +e7ca557edf5366c726eb7bdda35dcdacbb7e5ef57fe7c38093368f77aed8e97d azure-northcentralus-inbound.txt +0c39c0b1bfd140c2bbc2d29b64c42ccab74c0353961ae1320f4490d1ae5a9f0f azure-northcentralus-outbound.txt d2fcd2686daf4581a3055ece963509b931cdc6dc949ea0b20b3a4a1560bbcb4d azure-northcentralus.txt +6aee9a319e347e13bef6d3dbb6fbd5b8f64729d6a7ab95f3b906a406b2c15e0d azure-northeurope-inbound.txt +b4de8634cf564bbc8c67ba98cf145fca46a42cbedc7f0c826263f0c76e95ba6f azure-northeurope-outbound.txt 5e516e27763f2d19705c5fedfa8dffecb27faf16f71ab9ff8db90106e638321a azure-northeurope.txt +4c1c21ce3faf29d40a2f1a63c8a8d7ecb6ef77de4259cf3acd81e92366f1aad1 azure-norwayeast-inbound.txt +46d409fa4f535700b3fcd8e5008f5eea3d86a7b63af1e857af6d65a4359d2960 azure-norwayeast-outbound.txt 26e1dd461c3d604855602964b7217578a9a225851948509f5a27692d6fbc45bd azure-norwayeast.txt +0f6b44d018d0ebd245869c565ffb3ee142dd30adb5264c2627fa5db01fb94e44 azure-norwaywest-outbound.txt 0f6b44d018d0ebd245869c565ffb3ee142dd30adb5264c2627fa5db01fb94e44 azure-norwaywest.txt 15f4bee4b68fba21bcde2c63f32a6f9450448387c49c441d522e452653940334 azure-outbound.txt +255aaeb196cda32caa595ca36a618238fbb7842a7b9a992c856460abe9d675f1 azure-polandcentral-outbound.txt 255aaeb196cda32caa595ca36a618238fbb7842a7b9a992c856460abe9d675f1 azure-polandcentral.txt +3eba06c7165ad73239e605e95487ea5d28083224f8f98b53244c31343377ca38 azure-qatarcentral-inbound.txt +5b3290ed3647053eb2d7db885fc61775486567761e61460d4024f8239609b154 azure-qatarcentral-outbound.txt bec8811dc2d3d13c065ddd110ec0df2ab1cd9fa86ca7252d08cf05a8fb69ec37 azure-qatarcentral.txt +35b4c915f960e668b16ca31c87b50804f191c47690576d5905a5f1e712bd9a27 azure-southafricanorth-inbound.txt +640c746e802f1abe54fd92164b6db5a994b2670227efed62c585ef79817a3f20 azure-southafricanorth-outbound.txt 1ea7c8b2848c4c7e169c6221c520290c20c1fd5f19fc443735976ebbded7fe07 azure-southafricanorth.txt +65e4980f00da272ce4da226bfe405ff4e4a1af657f2bc67c58463e5a7a47d51e azure-southafricawest-outbound.txt 65e4980f00da272ce4da226bfe405ff4e4a1af657f2bc67c58463e5a7a47d51e azure-southafricawest.txt +11b74d41aae59471687eff3253de3c7f06923c8582ac07f9368f93994b924fb4 azure-southcentralus-inbound.txt +3a14a71a31746192487e601360235264fe6c7c18c69c29b556080b644a4537ea azure-southcentralus-outbound.txt 04f8a475031be8778597c84b3ed9b78e18c33281478460d223c6b3f974bb6f58 azure-southcentralus.txt +1b5ae377b1bd3b8962aea9047249b0ffd780568a2a3a83c024cd198941606f98 azure-southcentralus2-outbound.txt 1b5ae377b1bd3b8962aea9047249b0ffd780568a2a3a83c024cd198941606f98 azure-southcentralus2.txt +463fdbeccec8325f7b28ea44b5e936e63651bc0368ee68fb0c9e4a20565999b6 azure-southeastasia-inbound.txt +bb5897473079aaf819de281e2f872bbe113c2226bb192fb4a23d10ed1d743893 azure-southeastasia-outbound.txt 9ac9af14ac3489f85162d196762ca7a626b55c2c9f3716fc846407c96b058745 azure-southeastasia.txt +65487ceebb985014f7a1010c5009886a243c060e83b7a32e7998214b21b920e6 azure-southeastus-outbound.txt 65487ceebb985014f7a1010c5009886a243c060e83b7a32e7998214b21b920e6 azure-southeastus.txt +5d1c01afaecbbde6e16b43bf7b770934d5a45b38bc5bccb53243fe59ead744eb azure-southeastus3-outbound.txt 5d1c01afaecbbde6e16b43bf7b770934d5a45b38bc5bccb53243fe59ead744eb azure-southeastus3.txt +df43f0e58ebafca515103d23540bf9fe17b617124c41a99e6ffc4da64a180c05 azure-southindia-inbound.txt +f1cdb16bc1d5c20ccf8cc21f086087cd119fba52d7a0146372456f6dc17dec37 azure-southindia-outbound.txt 9eef0b34a58368802dd80d118152ca3ce3a7e934e8483a7c0e064dc08cddbb69 azure-southindia.txt +9e6edc95229e169a0aceae9b5a486b453a9a5b3c6be13ba2c72d8c3674a49498 azure-spaincentral-outbound.txt 9e6edc95229e169a0aceae9b5a486b453a9a5b3c6be13ba2c72d8c3674a49498 azure-spaincentral.txt +c7c7de69c50aa029e959279aea32f748fc8600863c762e76167b6a4284682a30 azure-swedencentral-inbound.txt +1e795487ad9ebdae1c32cb4cd55b0d9dbc4069e181015d7544a1759871a80608 azure-swedencentral-outbound.txt fbdfb659571769d2f7014fb8f09b4aa1355751d90a676d7d8f36a347615f3ccc azure-swedencentral.txt +b065b808ba0f8a4a01f16ab98f83db4d3dc158813f7c4e2a723ea467e4f97309 azure-swedensouth-outbound.txt b065b808ba0f8a4a01f16ab98f83db4d3dc158813f7c4e2a723ea467e4f97309 azure-swedensouth.txt +8cb3a60422b85cd250ed3742f05d8d6ded3b02a9fc7f8f1e47132e2eef32bcfe azure-switzerlandnorth-inbound.txt +4de6aadfc159388839a178dec245749361c771ceb34e2bdc29cafb706c11c8d5 azure-switzerlandnorth-outbound.txt f2cc2c6707504e2f97a7e474b3d1eba8f9ae18b32de37bd28107f45e14fa1eee azure-switzerlandnorth.txt +984bd57653ad2ca44578313ac77e62bdea51b2402ec794e37cca4b854682f7f3 azure-switzerlandwest-inbound.txt +cee570919e3a51bd676192e1a1c1c143d2c427fb5a5e82d6bc81efe42c2bf2d1 azure-switzerlandwest-outbound.txt 1b8eda490210b05c5bb307ca37a7baf8a4f01e7c8c2e6a8c95772f928374f18a azure-switzerlandwest.txt +04ffc7cbae4b5a3207e98581198430cf77da5f58cbd57b7b264331166b261dbd azure-taiwannorth-outbound.txt 04ffc7cbae4b5a3207e98581198430cf77da5f58cbd57b7b264331166b261dbd azure-taiwannorth.txt +18ea13796a3c14222159b8343257bceb9e72ceedd32248bc28d31e47bbde6dc2 azure-taiwannorthwest-outbound.txt 18ea13796a3c14222159b8343257bceb9e72ceedd32248bc28d31e47bbde6dc2 azure-taiwannorthwest.txt +ebf3a58312408563e3254291796ce54cfbd8fb2a7f2d81090861bffdbebe456b azure-uaecentral-outbound.txt ebf3a58312408563e3254291796ce54cfbd8fb2a7f2d81090861bffdbebe456b azure-uaecentral.txt +1bbb70d065b70b68a2592c67a3a7714af79ad4b698d43afad3e0b26813698b93 azure-uaenorth-inbound.txt +0f712d5b14faace1597794f4655853cceabe32edf8985ca5898ad85b3ac09b76 azure-uaenorth-outbound.txt 0f1459dca6baf265da5c634b3c1fcb6aff19c4081f06cd580a00a34cc95ab0b2 azure-uaenorth.txt +28dfb18766352667b4c7f168c11aba09ad919901aeadb0b1c7eadceda3dac831 azure-uksouth-inbound.txt +aa4af362d0f04177c06c7181c8cb36719806ab1be7a7c589a7bf8023a98c20ff azure-uksouth-outbound.txt f4608e632c3025a9ad66a3113fdd90359e176fadcb862d53e0a5f3f3060239cd azure-uksouth.txt +55debb898d9a7e444c5b7c9264b806f8ce6eb638cc3cc31883a5c25c24c423c0 azure-ukwest-inbound.txt +69e93db73d2c60517bfa523d96a5a133716a40ef1d1c8607ece76936264f6019 azure-ukwest-outbound.txt 078d3e1378478fc7d1a1b5f82900d101e9941d1e557dc1b3bf9207ca7414275c azure-ukwest.txt +4f47e3ee6364669d02dc727842bb8a2a93e42f8900d96fa4765374ac2a1e6225 azure-usgovarizona-inbound.txt 4f47e3ee6364669d02dc727842bb8a2a93e42f8900d96fa4765374ac2a1e6225 azure-usgovarizona.txt +d3061c27e58038e09a4d51cafa44cfcf7680dfcfcdb38545cbca656455de1d8f azure-usgovvirginia-inbound.txt d3061c27e58038e09a4d51cafa44cfcf7680dfcfcdb38545cbca656455de1d8f azure-usgovvirginia.txt +bd1879e1bcb0c280867cd767968e3a1f679b9430967a2ab4c0efbe78cd82be3a azure-westcentralus-inbound.txt +0173192c670be0968f09650110b5e81377d8391f8f8ff445ee689f698280db67 azure-westcentralus-outbound.txt 49bacdb6835961c23c2b1511fa4fad3a475d37d77fff04868943535f1cb8b722 azure-westcentralus.txt +106e2a7a5ece26806c0996ce1f15ad40223efa7f0948b474927c45de565b71bd azure-westeurope-inbound.txt +07c552bcfdea59d7c633e5baf3b74946bd336f2fe8e907a7b918990235199d07 azure-westeurope-outbound.txt b90753d50571d92a046d67a0b85dc62cdd5d724c062c55977ae9faeb4d67a12f azure-westeurope.txt +c603a1429a5e49da9766aa78c49ba24903517a1dbe94e74f342cd799aef9e9de azure-westindia-inbound.txt +7bde3075a44d8aacef662ef404add547ad378d7962ba9d67c4a5862e91fa5583 azure-westindia-outbound.txt 6db2d66e0525eae46ebcd74640896976d4dea3bdb167c431ec1e75b121b6a33c azure-westindia.txt +ac68e998634d7477f96a064ba055098dbce473c311777b9909f4110a86e705da azure-westus-inbound.txt +c9fe8bc4dbf8db3b81a800251ef11f71d382bf5be9fb9375218a3cb6a00a7676 azure-westus-outbound.txt d39e708072890cbd5ea8b36de5aa8d51258a125e37ef05bd97dd9706b40fdec0 azure-westus.txt +65dd155474d32dff56be66f2de0ab397e2e06fe4d8ea8a0ebc74a0e0335a2667 azure-westus2-inbound.txt +b0c13033cec026fb0227a482b1804776ac20c98c9b640b02b24671c39350625e azure-westus2-outbound.txt 885d5ab8bb353bf591c4224bc6fcc9e1d5a9941de79848eebe4ba93cd63dc7b2 azure-westus2.txt +bab975717cf05b6c853b5939c01108d418ed7ade33a7beccca0e51f2d98dbce9 azure-westus3-inbound.txt +f5671dcc3971ded2e05a1db6afe0e2991c955657a428e4683291f7f845ec1332 azure-westus3-outbound.txt f696549dc7a55b045cc8153fb437ce22691a1bcc613f6a1c0ab412882fca8020 azure-westus3.txt e293f20e31382bcd9228886457ea5ceabc9148e08d0ae037d54014ca767ceb92 azure.txt +b845d41a6608a354c7127f388d15060507beb0ac38b9f3b3781a57e5196ebab7 gcp-asia-northeast1-inbound.txt +a9d32d38ab1f165999a2e4be26d5537194f28bae07d36f1fe835beadb473d0ca gcp-asia-northeast1-outbound.txt dad1728af915168c00c40883146ff19d6c74c4b10a317e717ef5161c3e94fed8 gcp-asia-northeast1.txt +a8a10185863d4379d96d69c3a923a26158ef3a3095caa68c55e1d6fd1f72322e gcp-asia-south1-inbound.txt +e331ed863a55a4931fe42f53e07e86bbc74873bf037c3455a629f0bb59325b7f gcp-asia-south1-outbound.txt afef578ec47413a8138ba41522824776d4e593b17017224fb5235c90da22dd82 gcp-asia-south1.txt +988e2ff2deea40f28c8368efc98dd11c8d1df260ce887129b2e711d1a2af50d4 gcp-asia-southeast1-inbound.txt +7680648c7f51bd7a141cd35077b133be4f4b253d4e88cf70e2d5f3f88e98eab2 gcp-asia-southeast1-outbound.txt 332b227e90c10619b659e23ddb072c90de39486299ffd4b9a59c1d3b97110fb6 gcp-asia-southeast1.txt +6d3dd29ff4eafaf889d5175e25f42a5b646749bd4d0945fc666486c5c38b3dbc gcp-australia-southeast1-inbound.txt +978666012442c3febc6ed2bad3ed8d721775f64f88db3a1e491bd87d75b81c7a gcp-australia-southeast1-outbound.txt 7a474e52591acecb2b40a3b35f207d9d39fa02e056c3921c55fad5843e710b7f gcp-australia-southeast1.txt +9e04b4a315741c6fa7cad54b5fd8d0bb89d367f20bd2dcc0cb5bf579dd3c7b6e gcp-europe-west1-inbound.txt +e87ce59b7f07587212bf8d65f247b46ff3758a40ae395fe6db39c6e68cfee1bc gcp-europe-west1-outbound.txt 06382e19edd80fdd807a263f7e8e59a3688ac3fd955e4d029d1e56c77fcee28b gcp-europe-west1.txt +a2f8ec062ea9ba903d423020ad83fbb4e5133911312231811cc17436f32b2d0b gcp-europe-west2-inbound.txt +20b90a6645d5520fe8c563d9806545c95776def9443790eed05e1b30d8a3af76 gcp-europe-west2-outbound.txt 540a1f7066e17291c33b76a4afe05f9b48520a2f80d387e391273aff81a0c00f gcp-europe-west2.txt +eeb20140f744a0e596b70b5b922818445236110c8680fa3b92bc386eadf703c5 gcp-europe-west3-inbound.txt +36a190cc5986f2432d314fcac57763a45f6481f85b41915794b54ecc6e6ab69b gcp-europe-west3-outbound.txt 4291598d216c265189a94240c3337a261268e86a98e1a97b32f9420495d7ad21 gcp-europe-west3.txt 18e04d227be60383ac370106a95772ae8e5f3db1aeb863d08276d69346162049 gcp-inbound.txt +61509e14f78a0f0daab5e96082330abd0f984f4d7c51c3856abe35c07127f651 gcp-me-central2-inbound.txt +2046f1a231a29d99da97d2ed07730c04c46f1f1f6bbc059e93be4910b096f653 gcp-me-central2-outbound.txt ad64c448af73ebff5fe4b204c9df33006b7b702cd9fb1045ce79561e5c8768df gcp-me-central2.txt +cc874389457836dc000c7211c6c1560f46bdba3df07a07116b5cccbace9bfa1d gcp-northamerica-northeast1-inbound.txt +9efc89a818f1449d09f3507deb05dae439fc3f7dfb74bfbdba3c59300fd848c4 gcp-northamerica-northeast1-outbound.txt f3dbe42e7454ff90a5a0bb62ec9283434457a69555f411b44833385b0c908634 gcp-northamerica-northeast1.txt 9d1b0faa1fed3a54dca7009305d77f06566045bc7fac794e2abdc28fccd17e71 gcp-outbound.txt +dde1bbb89b9f64c72da11e7419ad0007629f16b85f0e778d8a5ccd8ac44e468e gcp-southamerica-east1-inbound.txt +281cf264fadd773912e147bc049e647081771e01b1956ebf31e3764336a5cce4 gcp-southamerica-east1-outbound.txt 7f9ec2dbbc5abb56539df8a2c2a250b582909b19d1c28b6d89081725cdd83c75 gcp-southamerica-east1.txt +5e05bcdd01ffaf10c8a2a22c30705fe57036a7c82df921b7bac4ed8512b805aa gcp-us-central1-inbound.txt +b4e54a9ce36ebe6300207e0f140a4b7e34d3c7c5c0cd398ab36c1897ffbb8970 gcp-us-central1-outbound.txt ae9a9630675c820e8ba9a4b021196d26daccd1c590a76610cb0b6a1da5925208 gcp-us-central1.txt +c37297be2466451ca1d7b94de08b9b73de4a85209f80701c892213ba4c0ff860 gcp-us-east1-inbound.txt +8c6364eef47912d6d632db36a4337fd6555bc8ed7218e0fe772fd971168861c8 gcp-us-east1-outbound.txt 4bf44b1864be9d8152f8651ff039b0a97f98e9e586b0a59305c60a1683f826c5 gcp-us-east1.txt +3c19ab6cafda4d64a7e3e55a42bb8e6d7fbf41a7653ea1220d1d33d81ffc933a gcp-us-east4-inbound.txt +3a8957b8d60191ea54402724f837c9a1cc1b64ff975a932533996aed6f75b2cd gcp-us-east4-outbound.txt 2f3889150ba44c6697f765d9bb8dfe9fe7bff4a96b0a005b3c6f8ca806342e8e gcp-us-east4.txt +89a82d6f020b420d04829412c62b18a3c0262a907f674ef37293910c7f7516c6 gcp-us-west1-inbound.txt +137c3776a9e2fcdd700d9d9dfd82fd295071bc053517526935411c89d8a14269 gcp-us-west1-outbound.txt c56e7ae0840d1cb5b73f536ced890dfc6d12812816cc568660c6937c17cac490 gcp-us-west1.txt +fbd372d9760c4e1162ace924a24645985613cb47041b6cee8cf94b8c8eb5973f gcp-us-west4-inbound.txt +b3ed357e63fe6929ca1ff53b1f7cbd01543e84198b389dfcde77e81445acab9f gcp-us-west4-outbound.txt 3ec457f018f724a8462572db85c6eee7dd00f1beced683874cafb576919cc5e1 gcp-us-west4.txt b90eb2c6f7c6b07cca412a333000882cfb1903dea67a130f3f545e4a17df487b gcp.txt diff --git a/docs/output/aws-ap-northeast-1-inbound.txt b/docs/output/aws-ap-northeast-1-inbound.txt new file mode 100644 index 0000000..1c7104a --- /dev/null +++ b/docs/output/aws-ap-northeast-1-inbound.txt @@ -0,0 +1,2 @@ +18.99.67.176/28 +35.72.28.0/28 diff --git a/docs/output/aws-ap-northeast-1-outbound.txt b/docs/output/aws-ap-northeast-1-outbound.txt new file mode 100644 index 0000000..33302ef --- /dev/null +++ b/docs/output/aws-ap-northeast-1-outbound.txt @@ -0,0 +1,3 @@ +18.177.16.95/32 +35.72.28.0/28 +52.195.231.0/24 diff --git a/docs/output/aws-ap-northeast-2-inbound.txt b/docs/output/aws-ap-northeast-2-inbound.txt new file mode 100644 index 0000000..8bc5af0 --- /dev/null +++ b/docs/output/aws-ap-northeast-2-inbound.txt @@ -0,0 +1,2 @@ +18.98.129.32/28 +3.38.156.176/28 diff --git a/docs/output/aws-ap-northeast-2-outbound.txt b/docs/output/aws-ap-northeast-2-outbound.txt new file mode 100644 index 0000000..59dced4 --- /dev/null +++ b/docs/output/aws-ap-northeast-2-outbound.txt @@ -0,0 +1,3 @@ +3.38.156.176/28 +43.203.162.0/24 +54.180.50.119/32 diff --git a/docs/output/aws-ap-south-1-inbound.txt b/docs/output/aws-ap-south-1-inbound.txt new file mode 100644 index 0000000..a45789c --- /dev/null +++ b/docs/output/aws-ap-south-1-inbound.txt @@ -0,0 +1,2 @@ +18.96.224.16/28 +65.0.37.64/28 diff --git a/docs/output/aws-ap-south-1-outbound.txt b/docs/output/aws-ap-south-1-outbound.txt new file mode 100644 index 0000000..9c681f6 --- /dev/null +++ b/docs/output/aws-ap-south-1-outbound.txt @@ -0,0 +1,3 @@ +13.200.135.0/24 +13.232.248.161/32 +65.0.37.64/28 diff --git a/docs/output/aws-ap-southeast-1-inbound.txt b/docs/output/aws-ap-southeast-1-inbound.txt new file mode 100644 index 0000000..a6cb481 --- /dev/null +++ b/docs/output/aws-ap-southeast-1-inbound.txt @@ -0,0 +1,2 @@ +13.214.1.96/28 +18.99.38.0/28 diff --git a/docs/output/aws-ap-southeast-1-outbound.txt b/docs/output/aws-ap-southeast-1-outbound.txt new file mode 100644 index 0000000..dfe31b5 --- /dev/null +++ b/docs/output/aws-ap-southeast-1-outbound.txt @@ -0,0 +1,3 @@ +13.213.212.4/32 +13.214.1.96/28 +47.128.12.0/24 diff --git a/docs/output/aws-ap-southeast-2-inbound.txt b/docs/output/aws-ap-southeast-2-inbound.txt new file mode 100644 index 0000000..5001224 --- /dev/null +++ b/docs/output/aws-ap-southeast-2-inbound.txt @@ -0,0 +1,2 @@ +18.98.192.128/28 +3.26.4.0/28 diff --git a/docs/output/aws-ap-southeast-2-outbound.txt b/docs/output/aws-ap-southeast-2-outbound.txt new file mode 100644 index 0000000..a080af3 --- /dev/null +++ b/docs/output/aws-ap-southeast-2-outbound.txt @@ -0,0 +1,3 @@ +13.237.96.217/32 +3.26.4.0/28 +3.27.139.0/24 diff --git a/docs/output/aws-ap-southeast-3-inbound.txt b/docs/output/aws-ap-southeast-3-inbound.txt new file mode 100644 index 0000000..a38d4d4 --- /dev/null +++ b/docs/output/aws-ap-southeast-3-inbound.txt @@ -0,0 +1,2 @@ +18.98.96.160/28 +18.98.96.192/28 diff --git a/docs/output/aws-ap-southeast-3-outbound.txt b/docs/output/aws-ap-southeast-3-outbound.txt new file mode 100644 index 0000000..ecb433a --- /dev/null +++ b/docs/output/aws-ap-southeast-3-outbound.txt @@ -0,0 +1,2 @@ +18.98.96.163/32 +18.98.98.0/24 diff --git a/docs/output/aws-ca-central-1-inbound.txt b/docs/output/aws-ca-central-1-inbound.txt new file mode 100644 index 0000000..9f9f804 --- /dev/null +++ b/docs/output/aws-ca-central-1-inbound.txt @@ -0,0 +1,2 @@ +18.99.0.192/28 +3.96.84.208/28 diff --git a/docs/output/aws-ca-central-1-outbound.txt b/docs/output/aws-ca-central-1-outbound.txt new file mode 100644 index 0000000..5a1d22e --- /dev/null +++ b/docs/output/aws-ca-central-1-outbound.txt @@ -0,0 +1,3 @@ +15.157.166.0/24 +3.96.84.208/28 +35.183.59.105/32 diff --git a/docs/output/aws-eu-central-1-inbound.txt b/docs/output/aws-eu-central-1-inbound.txt new file mode 100644 index 0000000..a5424dc --- /dev/null +++ b/docs/output/aws-eu-central-1-inbound.txt @@ -0,0 +1,2 @@ +18.159.44.32/28 +18.96.33.224/28 diff --git a/docs/output/aws-eu-central-1-outbound.txt b/docs/output/aws-eu-central-1-outbound.txt new file mode 100644 index 0000000..79fa0cf --- /dev/null +++ b/docs/output/aws-eu-central-1-outbound.txt @@ -0,0 +1,3 @@ +18.159.32.64/32 +18.159.44.32/28 +3.77.216.0/24 diff --git a/docs/output/aws-eu-north-1-outbound.txt b/docs/output/aws-eu-north-1-outbound.txt new file mode 100644 index 0000000..87e71ec --- /dev/null +++ b/docs/output/aws-eu-north-1-outbound.txt @@ -0,0 +1 @@ +18.99.97.0/24 diff --git a/docs/output/aws-eu-west-1-inbound.txt b/docs/output/aws-eu-west-1-inbound.txt new file mode 100644 index 0000000..cfaacbf --- /dev/null +++ b/docs/output/aws-eu-west-1-inbound.txt @@ -0,0 +1,2 @@ +18.97.193.128/28 +3.250.244.112/28 diff --git a/docs/output/aws-eu-west-1-outbound.txt b/docs/output/aws-eu-west-1-outbound.txt new file mode 100644 index 0000000..b8dc569 --- /dev/null +++ b/docs/output/aws-eu-west-1-outbound.txt @@ -0,0 +1,3 @@ +3.250.244.112/28 +3.253.190.0/24 +46.137.47.49/32 diff --git a/docs/output/aws-eu-west-2-inbound.txt b/docs/output/aws-eu-west-2-inbound.txt new file mode 100644 index 0000000..98e892d --- /dev/null +++ b/docs/output/aws-eu-west-2-inbound.txt @@ -0,0 +1,2 @@ +18.134.65.240/28 +18.98.160.48/28 diff --git a/docs/output/aws-eu-west-2-outbound.txt b/docs/output/aws-eu-west-2-outbound.txt new file mode 100644 index 0000000..1bc451d --- /dev/null +++ b/docs/output/aws-eu-west-2-outbound.txt @@ -0,0 +1,3 @@ +18.134.65.240/28 +18.171.216.0/24 +3.10.112.150/32 diff --git a/docs/output/aws-eu-west-3-inbound.txt b/docs/output/aws-eu-west-3-inbound.txt new file mode 100644 index 0000000..ab611b9 --- /dev/null +++ b/docs/output/aws-eu-west-3-inbound.txt @@ -0,0 +1,2 @@ +13.39.141.128/28 +18.98.64.208/28 diff --git a/docs/output/aws-eu-west-3-outbound.txt b/docs/output/aws-eu-west-3-outbound.txt new file mode 100644 index 0000000..9032f23 --- /dev/null +++ b/docs/output/aws-eu-west-3-outbound.txt @@ -0,0 +1,3 @@ +13.39.141.128/28 +15.236.174.74/32 +15.237.199.0/24 diff --git a/docs/output/aws-sa-east-1-inbound.txt b/docs/output/aws-sa-east-1-inbound.txt new file mode 100644 index 0000000..34d69d0 --- /dev/null +++ b/docs/output/aws-sa-east-1-inbound.txt @@ -0,0 +1,2 @@ +15.229.120.16/28 +18.96.64.128/28 diff --git a/docs/output/aws-sa-east-1-outbound.txt b/docs/output/aws-sa-east-1-outbound.txt new file mode 100644 index 0000000..65f01cb --- /dev/null +++ b/docs/output/aws-sa-east-1-outbound.txt @@ -0,0 +1,3 @@ +15.229.120.16/28 +15.229.205.0/24 +177.71.254.47/32 diff --git a/docs/output/aws-us-east-1-inbound.txt b/docs/output/aws-us-east-1-inbound.txt new file mode 100644 index 0000000..0f51cbf --- /dev/null +++ b/docs/output/aws-us-east-1-inbound.txt @@ -0,0 +1,2 @@ +18.97.15.0/28 +3.237.73.224/28 diff --git a/docs/output/aws-us-east-1-outbound.txt b/docs/output/aws-us-east-1-outbound.txt new file mode 100644 index 0000000..4f4ad06 --- /dev/null +++ b/docs/output/aws-us-east-1-outbound.txt @@ -0,0 +1,4 @@ +3.237.73.224/28 +3.41.179.0/25 +44.215.162.0/24 +54.156.226.103/32 diff --git a/docs/output/aws-us-east-2-inbound.txt b/docs/output/aws-us-east-2-inbound.txt new file mode 100644 index 0000000..39bcece --- /dev/null +++ b/docs/output/aws-us-east-2-inbound.txt @@ -0,0 +1,2 @@ +18.97.131.208/28 +3.128.237.208/28 diff --git a/docs/output/aws-us-east-2-outbound.txt b/docs/output/aws-us-east-2-outbound.txt new file mode 100644 index 0000000..6ef0a99 --- /dev/null +++ b/docs/output/aws-us-east-2-outbound.txt @@ -0,0 +1,3 @@ +18.221.200.169/32 +3.128.237.208/28 +3.145.247.0/24 diff --git a/docs/output/aws-us-gov-west-1-inbound.txt b/docs/output/aws-us-gov-west-1-inbound.txt new file mode 100644 index 0000000..84d41fa --- /dev/null +++ b/docs/output/aws-us-gov-west-1-inbound.txt @@ -0,0 +1 @@ +3.30.186.128/28 diff --git a/docs/output/aws-us-gov-west-1-outbound.txt b/docs/output/aws-us-gov-west-1-outbound.txt new file mode 100644 index 0000000..89a56b4 --- /dev/null +++ b/docs/output/aws-us-gov-west-1-outbound.txt @@ -0,0 +1,2 @@ +3.30.186.128/28 +3.30.245.130/32 diff --git a/docs/output/aws-us-west-1-inbound.txt b/docs/output/aws-us-west-1-inbound.txt new file mode 100644 index 0000000..fdbf8e1 --- /dev/null +++ b/docs/output/aws-us-west-1-inbound.txt @@ -0,0 +1,2 @@ +18.96.128.16/28 +44.234.192.32/28 diff --git a/docs/output/aws-us-west-1-outbound.txt b/docs/output/aws-us-west-1-outbound.txt new file mode 100644 index 0000000..c75e51d --- /dev/null +++ b/docs/output/aws-us-west-1-outbound.txt @@ -0,0 +1,3 @@ +18.96.129.0/24 +44.234.192.32/28 +52.27.216.188/32 diff --git a/docs/output/aws-us-west-2-inbound.txt b/docs/output/aws-us-west-2-inbound.txt new file mode 100644 index 0000000..3ab0e46 --- /dev/null +++ b/docs/output/aws-us-west-2-inbound.txt @@ -0,0 +1,2 @@ +18.98.3.224/28 +44.234.192.32/28 diff --git a/docs/output/aws-us-west-2-outbound.txt b/docs/output/aws-us-west-2-outbound.txt new file mode 100644 index 0000000..8b6c448 --- /dev/null +++ b/docs/output/aws-us-west-2-outbound.txt @@ -0,0 +1,4 @@ +18.246.106.0/24 +3.42.138.0/25 +44.234.192.32/28 +52.27.216.188/32 diff --git a/docs/output/azure-australiacentral-inbound.txt b/docs/output/azure-australiacentral-inbound.txt new file mode 100644 index 0000000..6201efa --- /dev/null +++ b/docs/output/azure-australiacentral-inbound.txt @@ -0,0 +1,3 @@ +13.75.218.172/32 +20.70.34.64/28 +4.150.168.160/28 diff --git a/docs/output/azure-australiacentral-outbound.txt b/docs/output/azure-australiacentral-outbound.txt new file mode 100644 index 0000000..8a934e9 --- /dev/null +++ b/docs/output/azure-australiacentral-outbound.txt @@ -0,0 +1,14 @@ +13.70.105.50/32 +20.11.26.96/29 +20.211.147.64/29 +20.28.138.72/29 +20.28.90.0/23 +20.37.224.68/30 +20.40.72.88/29 +20.5.1.136/29 +20.5.170.240/29 +4.198.162.56/29 +4.199.151.128/28 +4.199.151.96/27 +4.237.24.16/29 +40.79.169.48/29 diff --git a/docs/output/azure-australiacentral2-inbound.txt b/docs/output/azure-australiacentral2-inbound.txt new file mode 100644 index 0000000..bef909d --- /dev/null +++ b/docs/output/azure-australiacentral2-inbound.txt @@ -0,0 +1,3 @@ +13.75.218.172/32 +20.193.110.128/28 +4.150.168.160/28 diff --git a/docs/output/azure-australiacentral2-outbound.txt b/docs/output/azure-australiacentral2-outbound.txt new file mode 100644 index 0000000..82ff970 --- /dev/null +++ b/docs/output/azure-australiacentral2-outbound.txt @@ -0,0 +1,13 @@ +13.70.105.50/32 +20.11.26.96/29 +20.167.154.0/23 +20.167.163.96/27 +20.211.147.64/29 +20.28.138.72/29 +20.36.120.68/30 +20.40.72.88/29 +20.5.1.136/29 +20.5.170.240/29 +4.198.162.56/29 +4.237.24.16/29 +40.79.169.48/29 diff --git a/docs/output/azure-australiaeast-inbound.txt b/docs/output/azure-australiaeast-inbound.txt new file mode 100644 index 0000000..b8a328f --- /dev/null +++ b/docs/output/azure-australiaeast-inbound.txt @@ -0,0 +1,3 @@ +13.75.218.172/32 +4.147.241.0/28 +4.150.168.160/28 diff --git a/docs/output/azure-australiaeast-outbound.txt b/docs/output/azure-australiaeast-outbound.txt new file mode 100644 index 0000000..49a9eba --- /dev/null +++ b/docs/output/azure-australiaeast-outbound.txt @@ -0,0 +1,69 @@ +13.70.105.50/32 +20.11.101.16/28 +20.11.101.160/27 +20.11.101.192/27 +20.11.101.64/28 +20.11.102.32/27 +20.11.102.64/28 +20.11.26.96/29 +20.11.89.184/29 +20.11.89.56/29 +20.11.99.160/28 +20.11.99.224/28 +20.11.99.32/28 +20.167.14.40/29 +20.167.6.192/28 +20.167.7.0/28 +20.167.7.112/28 +20.167.7.240/28 +20.167.7.32/28 +20.167.72.248/29 +20.167.76.160/27 +20.167.76.240/28 +20.167.76.32/28 +20.211.147.64/29 +20.227.13.152/29 +20.227.33.160/28 +20.227.37.160/28 +20.227.37.32/28 +20.227.37.64/28 +20.227.55.80/29 +20.248.129.144/29 +20.248.130.160/28 +20.248.130.208/28 +20.248.131.128/28 +20.248.132.96/28 +20.248.134.208/28 +20.248.252.32/29 +20.248.253.184/29 +20.28.138.72/29 +20.40.72.88/29 +20.5.1.136/29 +20.5.170.240/29 +20.53.218.192/28 +20.53.220.112/28 +20.53.220.128/28 +20.53.220.160/27 +20.53.220.192/28 +20.53.220.224/27 +20.53.220.80/28 +20.53.221.0/24 +20.53.222.0/26 +20.70.246.32/28 +20.70.247.32/28 +4.147.79.240/28 +4.147.88.96/29 +4.147.89.240/28 +4.147.90.128/28 +4.195.100.16/28 +4.195.100.32/28 +4.195.101.144/28 +4.195.101.176/28 +4.195.99.144/28 +4.195.99.224/28 +4.198.162.56/29 +4.237.22.0/28 +4.237.23.160/28 +4.237.24.16/29 +40.79.169.48/29 +48.215.100.0/23 diff --git a/docs/output/azure-australiasoutheast-inbound.txt b/docs/output/azure-australiasoutheast-inbound.txt new file mode 100644 index 0000000..0cb07fa --- /dev/null +++ b/docs/output/azure-australiasoutheast-inbound.txt @@ -0,0 +1,4 @@ +13.75.218.172/32 +4.147.241.0/28 +4.150.168.160/28 +4.198.113.16/28 diff --git a/docs/output/azure-australiasoutheast-outbound.txt b/docs/output/azure-australiasoutheast-outbound.txt new file mode 100644 index 0000000..ec79b24 --- /dev/null +++ b/docs/output/azure-australiasoutheast-outbound.txt @@ -0,0 +1,81 @@ +13.70.105.50/32 +13.77.43.104/29 +13.77.44.88/29 +191.239.179.136/29 +20.11.147.192/28 +20.11.147.224/27 +20.11.149.144/28 +20.11.149.192/28 +20.11.150.0/28 +20.11.150.128/28 +20.11.150.224/27 +20.11.150.48/28 +20.11.151.112/28 +20.11.151.128/28 +20.11.151.160/28 +20.11.151.224/28 +20.11.151.32/28 +20.11.158.160/27 +20.11.159.144/28 +20.11.159.160/28 +20.11.159.240/28 +20.11.159.96/27 +20.11.239.160/27 +20.11.239.192/26 +20.11.239.96/28 +20.11.26.96/29 +20.211.147.64/29 +20.211.197.112/28 +20.211.198.240/28 +20.211.241.16/28 +20.211.241.240/28 +20.211.242.176/28 +20.211.243.16/28 +20.211.243.80/28 +20.28.138.72/29 +20.40.72.88/29 +20.42.224.68/30 +20.5.1.136/29 +20.5.170.240/29 +20.70.70.192/28 +20.92.32.32/28 +20.92.34.224/28 +20.92.34.64/28 +20.92.35.112/28 +20.92.36.48/28 +20.92.37.128/28 +20.92.38.176/28 +20.92.39.0/28 +20.92.39.128/28 +20.92.39.240/28 +20.92.40.232/29 +20.92.41.160/29 +4.198.143.240/28 +4.198.157.160/28 +4.198.162.56/29 +4.198.75.32/28 +4.198.76.128/27 +4.198.76.16/28 +4.198.77.16/28 +4.198.77.64/28 +4.198.77.96/28 +4.198.78.48/28 +4.198.85.128/25 +4.198.85.96/27 +4.198.86.0/26 +4.198.86.64/27 +4.198.94.176/28 +4.198.94.192/26 +4.198.94.80/28 +4.198.95.0/25 +4.198.95.128/28 +4.200.164.0/23 +4.200.172.128/28 +4.200.172.72/29 +4.237.24.16/29 +40.127.75.248/29 +40.79.169.48/29 +52.189.195.56/29 +52.189.210.64/29 +52.189.211.40/29 +52.189.214.120/29 diff --git a/docs/output/azure-austriaeast-outbound.txt b/docs/output/azure-austriaeast-outbound.txt new file mode 100644 index 0000000..7c21cf7 --- /dev/null +++ b/docs/output/azure-austriaeast-outbound.txt @@ -0,0 +1 @@ +68.210.20.0/23 diff --git a/docs/output/azure-belgiumcentral-outbound.txt b/docs/output/azure-belgiumcentral-outbound.txt new file mode 100644 index 0000000..e0d26a4 --- /dev/null +++ b/docs/output/azure-belgiumcentral-outbound.txt @@ -0,0 +1 @@ +9.160.28.0/23 diff --git a/docs/output/azure-brazilsouth-inbound.txt b/docs/output/azure-brazilsouth-inbound.txt new file mode 100644 index 0000000..da817d3 --- /dev/null +++ b/docs/output/azure-brazilsouth-inbound.txt @@ -0,0 +1,3 @@ +104.41.54.118/32 +20.201.68.160/28 +4.150.168.160/28 diff --git a/docs/output/azure-brazilsouth-outbound.txt b/docs/output/azure-brazilsouth-outbound.txt new file mode 100644 index 0000000..ef2ae63 --- /dev/null +++ b/docs/output/azure-brazilsouth-outbound.txt @@ -0,0 +1,64 @@ +191.232.53.223/32 +191.233.243.64/28 +191.238.134.24/29 +20.195.138.176/29 +20.195.154.152/29 +20.197.204.224/28 +20.197.205.160/27 +20.197.205.192/26 +20.197.206.0/26 +20.197.206.112/28 +20.197.206.144/28 +20.197.206.160/27 +20.197.206.192/28 +20.197.206.224/27 +20.197.207.0/27 +20.197.207.128/26 +20.197.207.48/28 +20.197.207.64/26 +20.201.127.40/29 +20.201.50.208/28 +20.201.75.240/28 +20.201.76.128/27 +20.201.76.224/28 +20.201.77.16/28 +20.201.78.176/28 +20.201.78.208/28 +20.206.144.56/29 +20.206.205.224/28 +20.226.136.32/29 +20.226.153.32/28 +20.226.154.64/29 +20.226.179.160/28 +20.226.186.0/29 +20.226.204.200/29 +20.226.205.56/29 +20.226.220.16/28 +20.226.221.240/28 +20.226.222.128/27 +20.226.222.176/28 +20.226.222.64/26 +20.226.223.0/27 +20.226.223.128/27 +20.226.223.192/26 +20.226.223.96/27 +20.226.232.176/29 +20.226.233.64/29 +20.226.235.96/27 +20.226.236.208/28 +20.226.237.128/28 +20.226.239.104/29 +20.226.240.80/28 +20.226.241.192/28 +20.226.242.240/28 +20.226.243.112/28 +20.226.243.176/28 +20.226.243.208/28 +74.163.205.224/28 +74.163.206.128/27 +74.163.206.160/28 +74.163.206.208/28 +74.163.207.128/26 +74.163.207.192/28 +74.163.207.240/28 +74.163.62.0/23 diff --git a/docs/output/azure-brazilsoutheast-outbound.txt b/docs/output/azure-brazilsoutheast-outbound.txt new file mode 100644 index 0000000..4c7c2d0 --- /dev/null +++ b/docs/output/azure-brazilsoutheast-outbound.txt @@ -0,0 +1 @@ +108.140.52.0/23 diff --git a/docs/output/azure-canadacentral-inbound.txt b/docs/output/azure-canadacentral-inbound.txt new file mode 100644 index 0000000..7f92b1c --- /dev/null +++ b/docs/output/azure-canadacentral-inbound.txt @@ -0,0 +1,3 @@ +13.71.184.74/32 +20.220.50.240/28 +4.150.168.160/28 diff --git a/docs/output/azure-canadacentral-outbound.txt b/docs/output/azure-canadacentral-outbound.txt new file mode 100644 index 0000000..dd6a9e0 --- /dev/null +++ b/docs/output/azure-canadacentral-outbound.txt @@ -0,0 +1,79 @@ +13.71.168.40/29 +130.107.132.160/28 +130.107.132.192/28 +130.107.132.80/28 +130.107.132.96/28 +130.107.133.0/28 +130.107.133.144/28 +130.107.133.160/28 +130.107.133.192/27 +130.107.134.112/28 +130.107.134.128/28 +130.107.134.160/27 +130.107.134.192/28 +130.107.134.224/27 +130.107.134.64/28 +130.107.135.0/26 +130.107.135.128/28 +130.107.135.160/28 +130.107.135.192/26 +130.107.135.80/28 +130.107.135.96/28 +20.104.3.168/29 +20.116.153.184/29 +20.116.157.152/29 +20.116.195.0/28 +20.116.195.128/28 +20.116.197.192/27 +20.116.197.96/27 +20.116.198.0/28 +20.116.198.64/27 +20.116.202.192/26 +20.116.247.16/29 +20.116.247.8/29 +20.151.145.208/29 +20.151.153.184/29 +20.151.34.96/29 +20.175.131.208/28 +20.175.132.192/28 +20.175.132.96/29 +20.175.145.208/28 +20.175.147.128/27 +20.175.147.16/28 +20.175.147.192/26 +20.175.148.0/26 +20.175.148.240/28 +20.175.149.48/28 +20.175.149.64/27 +20.175.150.112/28 +20.175.150.128/28 +20.175.150.160/27 +20.175.150.48/28 +20.175.150.64/28 +20.175.182.192/26 +20.175.183.0/25 +20.175.184.120/29 +20.175.189.56/29 +20.200.94.232/29 +20.200.95.56/29 +4.172.46.144/28 +4.172.46.240/28 +4.172.47.16/28 +4.172.5.160/27 +4.206.242.0/23 +4.229.241.184/29 +4.229.241.192/29 +4.239.251.152/29 +4.239.251.160/29 +4.248.199.48/28 +40.85.218.176/29 +40.85.223.25/32 +40.89.16.68/32 +52.228.105.112/28 +52.228.106.16/28 +52.228.116.56/29 +52.228.98.192/28 +52.237.62.224/28 +52.237.63.112/28 +52.237.63.160/28 +52.246.152.40/29 diff --git a/docs/output/azure-canadaeast-inbound.txt b/docs/output/azure-canadaeast-inbound.txt new file mode 100644 index 0000000..27f578f --- /dev/null +++ b/docs/output/azure-canadaeast-inbound.txt @@ -0,0 +1,4 @@ +13.71.184.74/32 +20.220.99.176/28 +4.150.168.160/28 +40.89.16.70/32 diff --git a/docs/output/azure-canadaeast-outbound.txt b/docs/output/azure-canadaeast-outbound.txt new file mode 100644 index 0000000..7ab78cc --- /dev/null +++ b/docs/output/azure-canadaeast-outbound.txt @@ -0,0 +1,82 @@ +13.71.168.40/29 +20.151.145.208/29 +20.151.153.184/29 +20.151.34.96/29 +20.175.16.0/28 +20.175.16.144/28 +20.175.16.48/28 +20.175.16.64/28 +20.175.16.96/28 +20.175.17.0/28 +20.175.17.128/27 +20.175.17.64/28 +20.175.18.32/28 +20.175.27.0/28 +20.175.27.128/25 +20.175.27.80/28 +20.175.27.96/27 +20.175.28.0/27 +20.175.28.128/28 +20.175.28.48/28 +20.175.42.160/28 +20.175.42.96/28 +20.200.58.152/29 +20.200.62.168/29 +20.200.62.48/29 +20.220.106.48/28 +20.220.111.176/28 +20.220.111.32/28 +20.220.111.64/28 +20.220.111.96/28 +20.220.73.112/28 +20.220.77.32/29 +4.229.241.184/29 +4.229.241.192/29 +4.229.32.176/28 +4.229.32.224/28 +4.229.33.144/28 +4.229.33.176/28 +4.229.33.192/28 +4.229.33.224/27 +4.229.34.0/28 +4.229.34.160/27 +4.229.34.192/27 +4.229.34.32/27 +4.229.35.0/27 +4.229.35.128/26 +4.229.35.208/28 +4.229.35.224/27 +4.229.35.48/28 +4.229.35.80/28 +4.229.35.96/27 +4.229.36.0/27 +4.229.36.160/27 +4.229.36.192/28 +4.229.36.224/28 +4.229.36.32/28 +4.229.36.64/26 +4.229.43.160/28 +4.229.44.128/27 +4.229.44.192/28 +4.229.44.224/28 +4.229.44.48/28 +4.229.44.64/27 +4.229.45.128/26 +4.229.45.192/27 +4.229.45.240/28 +4.229.46.0/28 +4.229.80.24/29 +4.229.80.48/28 +4.229.89.40/29 +4.239.251.152/29 +4.239.251.160/29 +4.248.74.0/23 +40.69.97.8/29 +40.85.223.25/32 +40.86.228.200/29 +40.89.16.68/30 +52.229.101.104/29 +52.229.101.64/29 +52.229.93.96/29 +52.229.98.248/29 +52.246.152.40/29 diff --git a/docs/output/azure-centralindia-inbound.txt b/docs/output/azure-centralindia-inbound.txt new file mode 100644 index 0000000..802121e --- /dev/null +++ b/docs/output/azure-centralindia-inbound.txt @@ -0,0 +1,3 @@ +104.211.89.81/32 +20.235.199.64/28 +4.150.168.160/28 diff --git a/docs/output/azure-centralindia-outbound.txt b/docs/output/azure-centralindia-outbound.txt new file mode 100644 index 0000000..87cff5a --- /dev/null +++ b/docs/output/azure-centralindia-outbound.txt @@ -0,0 +1,76 @@ +104.211.101.14/32 +104.211.86.40/29 +135.235.128.0/23 +135.235.149.240/28 +135.235.150.160/28 +135.235.227.240/28 +135.235.230.128/28 +135.235.230.208/28 +135.235.230.224/28 +135.235.231.0/28 +135.235.231.128/27 +135.235.231.160/28 +135.235.231.192/28 +135.235.231.224/27 +135.235.231.48/28 +135.235.231.80/28 +135.235.231.96/27 +20.192.96.40/29 +20.198.25.0/29 +20.198.9.224/29 +20.207.73.128/29 +20.207.73.208/29 +20.207.92.176/29 +20.207.93.16/29 +20.219.203.64/29 +20.219.204.128/29 +20.219.229.240/29 +20.219.229.48/28 +20.219.237.192/29 +20.219.237.216/29 +20.235.224.208/28 +20.235.226.208/28 +20.235.227.128/28 +20.235.227.160/27 +20.235.227.208/28 +20.235.227.224/27 +20.235.227.64/28 +20.235.227.96/28 +20.235.228.144/28 +20.235.228.160/28 +20.235.228.208/28 +20.235.228.224/27 +20.235.228.32/27 +20.235.228.96/28 +20.235.229.0/28 +20.235.229.128/27 +20.235.229.176/28 +20.235.229.192/26 +20.235.229.48/28 +20.235.229.64/26 +20.235.230.0/28 +20.235.230.112/28 +20.235.230.128/26 +20.235.230.192/27 +20.235.230.48/28 +20.235.230.64/27 +20.244.88.56/29 +4.224.103.112/28 +4.224.103.144/28 +4.224.103.240/28 +4.224.138.96/28 +4.224.14.0/27 +4.224.8.64/27 +4.224.8.96/28 +4.224.92.128/26 +4.224.92.240/28 +4.224.92.32/27 +4.224.93.240/28 +4.224.93.80/28 +4.224.94.32/28 +4.224.94.64/28 +40.80.55.104/29 +40.80.78.128/29 +98.70.75.40/29 +98.70.76.16/29 +98.70.91.64/29 diff --git a/docs/output/azure-centralus-inbound.txt b/docs/output/azure-centralus-inbound.txt new file mode 100644 index 0000000..1921bb6 --- /dev/null +++ b/docs/output/azure-centralus-inbound.txt @@ -0,0 +1,5 @@ +20.37.156.209/32 +4.150.168.160/28 +4.249.192.240/28 +40.70.58.221/32 +52.254.24.96/28 diff --git a/docs/output/azure-centralus-outbound.txt b/docs/output/azure-centralus-outbound.txt new file mode 100644 index 0000000..2cdae03 --- /dev/null +++ b/docs/output/azure-centralus-outbound.txt @@ -0,0 +1,96 @@ +104.208.18.136/29 +13.86.56.40/29 +172.173.10.120/29 +172.202.121.240/29 +20.109.205.152/29 +20.109.228.8/29 +20.12.135.0/28 +20.12.135.128/28 +20.12.166.160/28 +20.12.167.192/28 +20.12.167.224/28 +20.15.235.192/29 +20.161.68.200/29 +20.161.68.208/29 +20.161.81.88/29 +20.161.82.48/29 +20.186.233.208/29 +20.221.17.144/28 +20.221.18.208/28 +20.221.19.16/28 +20.221.19.96/28 +20.236.221.192/27 +20.236.222.16/28 +20.236.223.16/28 +20.236.223.32/28 +20.236.223.80/28 +20.36.151.208/28 +20.37.156.208/32 +20.65.4.240/28 +20.80.123.112/28 +20.80.123.160/28 +20.80.123.224/27 +20.80.124.80/28 +20.83.19.192/26 +20.83.2.112/29 +20.83.20.0/28 +20.83.20.112/28 +20.83.20.64/27 +20.98.170.0/28 +23.101.152.95/32 +4.150.167.208/28 +4.150.167.224/27 +4.150.177.120/29 +4.249.133.96/28 +4.249.134.64/28 +4.249.135.0/28 +4.249.135.240/28 +4.249.142.160/28 +4.249.142.192/28 +4.249.142.64/28 +4.249.143.0/26 +4.249.143.128/26 +4.249.143.224/27 +4.249.143.80/28 +4.249.143.96/28 +4.249.229.208/28 +4.249.229.224/27 +4.249.230.0/26 +4.249.230.128/27 +4.249.230.96/27 +4.249.231.64/28 +40.70.144.208/28 +40.77.36.0/23 +48.214.167.160/28 +48.214.222.144/28 +48.214.222.176/28 +48.214.222.192/28 +48.214.222.64/27 +48.214.223.0/27 +48.214.223.128/28 +48.214.223.176/28 +48.214.223.224/28 +48.214.223.32/28 +48.214.223.80/28 +48.214.223.96/27 +52.154.56.64/29 +52.158.166.8/29 +52.158.222.240/29 +52.165.98.248/29 +52.180.139.48/29 +52.182.136.200/29 +52.182.221.176/28 +52.182.223.16/29 +52.185.73.192/28 +52.189.37.0/29 +52.189.38.88/29 +52.189.72.160/28 +52.189.72.32/28 +52.189.73.16/28 +52.228.152.176/28 +52.228.152.48/28 +52.228.153.32/28 +52.228.154.112/28 +52.228.154.32/28 +68.154.4.136/29 +74.249.107.232/29 diff --git a/docs/output/azure-centraluseuap-outbound.txt b/docs/output/azure-centraluseuap-outbound.txt new file mode 100644 index 0000000..e4de901 --- /dev/null +++ b/docs/output/azure-centraluseuap-outbound.txt @@ -0,0 +1 @@ +168.61.230.0/23 diff --git a/docs/output/azure-chilecentral-outbound.txt b/docs/output/azure-chilecentral-outbound.txt new file mode 100644 index 0000000..ae48b5e --- /dev/null +++ b/docs/output/azure-chilecentral-outbound.txt @@ -0,0 +1 @@ +68.211.52.0/23 diff --git a/docs/output/azure-chinaeast2-inbound.txt b/docs/output/azure-chinaeast2-inbound.txt new file mode 100644 index 0000000..eae6aee --- /dev/null +++ b/docs/output/azure-chinaeast2-inbound.txt @@ -0,0 +1,3 @@ +163.228.200.0/26 +52.130.1.64/29 +52.130.2.232/29 diff --git a/docs/output/azure-chinaeast3-inbound.txt b/docs/output/azure-chinaeast3-inbound.txt new file mode 100644 index 0000000..2b05f57 --- /dev/null +++ b/docs/output/azure-chinaeast3-inbound.txt @@ -0,0 +1,3 @@ +163.228.32.0/26 +52.130.1.64/32 +52.131.144.32/29 diff --git a/docs/output/azure-chinanorth2-inbound.txt b/docs/output/azure-chinanorth2-inbound.txt new file mode 100644 index 0000000..154695b --- /dev/null +++ b/docs/output/azure-chinanorth2-inbound.txt @@ -0,0 +1,2 @@ +139.217.120.0/26 +52.130.16.112/29 diff --git a/docs/output/azure-chinanorth3-inbound.txt b/docs/output/azure-chinanorth3-inbound.txt new file mode 100644 index 0000000..c5e26d5 --- /dev/null +++ b/docs/output/azure-chinanorth3-inbound.txt @@ -0,0 +1,3 @@ +52.130.16.113/32 +52.130.224.0/27 +52.131.16.32/29 diff --git a/docs/output/azure-chinanorth3-outbound.txt b/docs/output/azure-chinanorth3-outbound.txt new file mode 100644 index 0000000..e8bbb08 --- /dev/null +++ b/docs/output/azure-chinanorth3-outbound.txt @@ -0,0 +1,20 @@ +143.64.119.112/28 +143.64.119.160/27 +143.64.119.192/26 +143.64.136.96/28 +143.64.137.48/28 +143.64.154.160/28 +143.64.155.16/28 +143.64.155.160/27 +143.64.155.208/28 +143.64.155.224/27 +143.64.155.80/28 +143.64.156.48/28 +143.64.29.192/28 +143.64.29.64/28 +143.64.30.32/28 +143.64.31.208/28 +143.64.31.224/27 +143.64.57.192/29 +143.64.61.136/29 +163.228.235.40/29 diff --git a/docs/output/azure-denmarkeast-outbound.txt b/docs/output/azure-denmarkeast-outbound.txt new file mode 100644 index 0000000..503823f --- /dev/null +++ b/docs/output/azure-denmarkeast-outbound.txt @@ -0,0 +1 @@ +9.205.124.0/23 diff --git a/docs/output/azure-eastasia-inbound.txt b/docs/output/azure-eastasia-inbound.txt new file mode 100644 index 0000000..13d5ecd --- /dev/null +++ b/docs/output/azure-eastasia-inbound.txt @@ -0,0 +1,5 @@ +20.189.106.192/32 +20.239.211.144/28 +20.247.134.0/28 +4.150.168.160/28 +52.187.145.107/32 diff --git a/docs/output/azure-eastasia-outbound.txt b/docs/output/azure-eastasia-outbound.txt new file mode 100644 index 0000000..c6e013f --- /dev/null +++ b/docs/output/azure-eastasia-outbound.txt @@ -0,0 +1,84 @@ +13.67.21.136/29 +13.75.32.200/29 +20.187.237.160/28 +20.187.237.208/28 +20.187.237.224/28 +20.187.238.0/23 +20.189.106.194/32 +20.189.126.232/29 +20.2.226.184/29 +20.2.234.144/29 +20.205.195.72/29 +20.205.24.128/29 +20.205.79.112/29 +20.205.86.224/29 +20.239.102.144/28 +20.239.117.248/29 +20.239.212.16/28 +20.239.212.208/28 +20.239.213.128/26 +20.239.213.208/28 +20.239.213.80/28 +20.239.214.16/28 +20.239.214.160/28 +20.239.214.64/27 +20.239.228.144/28 +20.239.229.96/28 +20.239.23.32/28 +20.239.28.224/29 +20.239.31.8/29 +20.239.43.96/28 +20.239.47.144/28 +20.239.47.160/27 +20.239.47.192/28 +20.239.7.240/28 +20.239.96.112/29 +20.239.97.120/29 +20.239.97.144/29 +20.239.97.224/28 +20.239.97.72/29 +20.24.109.104/29 +20.24.109.80/29 +20.24.111.32/28 +20.24.238.208/28 +20.24.239.96/29 +20.24.250.0/28 +20.24.254.0/28 +20.247.49.144/28 +20.255.119.64/28 +20.255.138.176/28 +20.255.143.128/27 +20.255.143.16/28 +20.255.143.176/28 +20.255.143.208/28 +20.255.143.224/27 +20.255.143.32/27 +20.255.143.96/28 +20.255.192.160/28 +20.255.197.80/28 +20.255.198.128/27 +20.255.198.176/28 +20.255.198.208/28 +20.255.198.224/27 +20.255.198.32/27 +20.255.199.16/28 +20.255.199.32/27 +20.255.199.64/28 +20.6.164.240/28 +20.6.165.128/28 +20.6.233.184/29 +23.98.114.184/29 +4.144.65.192/28 +4.144.88.32/27 +4.144.88.64/28 +52.184.83.208/29 +52.187.0.85/32 +57.158.12.0/23 +57.158.95.144/28 +57.158.95.160/28 +57.158.95.208/28 +57.158.95.224/27 +57.158.95.48/28 +57.158.95.64/28 +57.158.95.96/27 +65.52.160.184/29 diff --git a/docs/output/azure-eastus-inbound.txt b/docs/output/azure-eastus-inbound.txt new file mode 100644 index 0000000..f534b69 --- /dev/null +++ b/docs/output/azure-eastus-inbound.txt @@ -0,0 +1,6 @@ +20.42.4.209/32 +20.42.4.211/32 +4.150.168.160/28 +40.70.58.221/32 +52.234.168.240/28 +52.254.24.96/28 diff --git a/docs/output/azure-eastus-outbound.txt b/docs/output/azure-eastus-outbound.txt new file mode 100644 index 0000000..a09e29d --- /dev/null +++ b/docs/output/azure-eastus-outbound.txt @@ -0,0 +1,139 @@ +128.203.118.160/28 +128.203.119.128/25 +128.203.119.16/28 +128.203.119.48/28 +128.203.119.64/26 +128.203.127.160/27 +13.90.176.192/26 +13.90.176.80/28 +13.90.183.0/27 +13.90.183.32/28 +134.33.203.176/28 +134.33.203.192/26 +134.33.204.0/26 +134.33.204.64/27 +134.33.204.96/28 +134.33.247.192/28 +134.33.247.224/27 +135.222.246.16/28 +135.222.246.32/27 +135.222.246.64/26 +135.234.150.128/25 +135.234.150.80/28 +135.234.150.96/27 +135.234.151.0/24 +172.171.133.64/28 +172.171.135.192/28 +172.203.186.112/29 +20.102.39.32/28 +20.121.174.16/28 +20.124.149.80/28 +20.124.154.216/29 +20.127.250.16/28 +20.161.68.200/29 +20.161.68.208/29 +20.161.81.88/29 +20.161.82.48/29 +20.185.213.224/28 +20.232.231.208/28 +20.232.6.224/28 +20.232.65.128/28 +20.237.91.232/29 +20.241.146.160/28 +20.241.222.224/28 +20.241.223.80/28 +20.241.252.0/28 +20.242.135.240/28 +20.242.173.112/28 +20.242.173.176/28 +20.242.173.208/28 +20.242.191.96/28 +20.246.175.248/29 +20.246.217.192/29 +20.253.104.112/28 +20.253.116.112/29 +20.253.17.80/28 +20.253.19.224/28 +20.253.5.0/28 +20.253.6.224/28 +20.253.7.72/29 +20.253.73.160/28 +20.253.79.192/28 +20.36.151.208/28 +20.42.4.208/32 +20.42.4.210/32 +20.42.74.128/26 +20.65.4.240/28 +20.75.145.128/29 +20.75.165.32/29 +20.75.209.224/28 +20.75.227.240/28 +20.75.247.160/28 +20.75.247.240/28 +23.101.152.95/32 +4.156.112.32/28 +4.156.117.192/28 +4.156.117.96/28 +4.156.118.144/28 +4.156.118.192/28 +4.156.118.48/28 +4.156.118.80/28 +4.156.204.0/29 +4.156.217.32/29 +4.156.230.224/28 +4.156.231.32/28 +4.156.238.176/28 +4.156.238.240/28 +4.156.39.224/28 +4.156.39.96/28 +4.156.49.160/28 +4.156.7.64/28 +4.156.95.144/28 +4.156.95.224/27 +4.157.140.48/29 +4.157.183.88/29 +4.157.39.224/28 +4.157.5.32/27 +4.157.7.0/28 +4.157.7.208/28 +4.157.7.240/28 +4.236.207.176/28 +4.236.210.48/28 +4.246.239.192/29 +4.255.39.160/27 +4.255.39.64/28 +40.70.144.208/28 +40.87.74.0/23 +48.194.119.176/28 +48.194.22.0/27 +48.194.22.112/28 +48.194.22.192/26 +48.194.23.0/24 +48.194.76.208/28 +48.194.76.224/27 +48.194.77.0/26 +48.194.77.64/28 +52.188.137.16/28 +52.188.31.192/29 +52.190.25.240/29 +52.224.142.160/28 +52.224.200.224/27 +52.226.142.208/28 +52.234.162.24/29 +52.234.167.0/24 +52.255.214.224/28 +52.255.214.64/28 +52.255.219.176/28 +52.255.219.192/28 +52.255.219.224/28 +52.255.220.32/28 +52.255.230.144/28 +57.151.106.192/29 +57.151.124.56/29 +57.151.124.96/29 +57.151.46.0/28 +57.151.82.88/29 +57.151.84.240/29 +68.154.4.136/29 +68.220.90.240/28 +74.249.107.232/29 diff --git a/docs/output/azure-eastus2-inbound.txt b/docs/output/azure-eastus2-inbound.txt new file mode 100644 index 0000000..5661056 --- /dev/null +++ b/docs/output/azure-eastus2-inbound.txt @@ -0,0 +1,5 @@ +20.41.4.113/32 +20.41.4.116/32 +4.150.168.160/28 +40.70.58.221/32 +52.254.24.96/28 diff --git a/docs/output/azure-eastus2-outbound.txt b/docs/output/azure-eastus2-outbound.txt new file mode 100644 index 0000000..f3c8b1b --- /dev/null +++ b/docs/output/azure-eastus2-outbound.txt @@ -0,0 +1,114 @@ +104.209.152.56/29 +128.85.168.0/23 +130.213.175.96/28 +132.196.218.192/28 +132.196.218.224/27 +132.196.219.176/28 +132.196.219.192/28 +132.196.219.48/28 +132.196.219.64/28 +132.196.219.96/27 +132.196.220.128/25 +132.196.221.0/26 +132.196.221.112/28 +132.196.221.128/26 +132.196.221.224/27 +132.196.222.0/24 +132.196.223.0/27 +132.196.228.128/28 +132.196.228.160/27 +132.196.229.48/28 +132.196.229.96/28 +135.222.150.192/26 +135.222.151.0/27 +135.224.214.16/28 +135.224.215.0/28 +172.193.61.176/28 +20.1.215.208/28 +20.10.113.160/28 +20.10.215.64/28 +20.10.237.240/28 +20.10.238.80/28 +20.10.239.112/28 +20.10.77.160/28 +20.10.78.16/28 +20.10.78.176/28 +20.10.92.192/29 +20.12.118.104/29 +20.12.122.112/28 +20.12.127.0/28 +20.15.63.224/27 +20.15.69.224/27 +20.15.70.0/24 +20.15.71.0/26 +20.15.71.64/27 +20.161.68.200/29 +20.161.68.208/28 +20.161.68.224/29 +20.161.81.88/29 +20.161.82.48/28 +20.161.82.64/29 +20.22.109.176/29 +20.22.176.208/28 +20.22.77.112/28 +20.22.77.128/28 +20.22.77.64/28 +20.22.9.128/28 +20.22.9.224/28 +20.22.9.48/28 +20.22.9.80/28 +20.230.13.80/29 +20.36.151.208/28 +20.41.4.112/32 +20.41.4.114/32 +20.65.4.240/28 +20.7.100.192/29 +20.7.243.128/28 +20.7.251.128/28 +20.7.81.64/28 +20.85.93.96/28 +20.94.104.128/28 +20.94.104.80/28 +20.94.106.48/28 +20.94.107.128/28 +20.94.15.0/28 +20.94.7.176/28 +20.94.7.64/27 +20.96.137.128/28 +20.96.138.160/29 +20.96.222.152/29 +23.101.152.95/32 +4.152.129.64/28 +4.152.181.128/28 +4.152.181.80/28 +4.152.181.96/28 +4.152.226.32/27 +4.152.227.128/27 +4.152.227.160/28 +4.152.227.64/28 +4.152.23.48/29 +4.152.245.64/28 +4.152.43.16/28 +4.152.44.80/28 +4.152.45.176/29 +4.152.55.176/28 +4.153.101.160/28 +40.70.144.208/28 +48.211.254.208/28 +48.211.255.240/28 +48.211.255.32/28 +68.154.4.136/29 +68.220.135.240/28 +68.220.220.224/28 +68.220.221.16/28 +68.220.221.32/27 +68.220.221.64/27 +68.220.221.96/28 +68.220.29.128/25 +68.220.29.96/27 +68.220.30.0/24 +68.220.31.0/26 +68.220.31.64/27 +74.249.107.232/29 +74.249.108.120/29 +74.249.108.56/29 diff --git a/docs/output/azure-eastus2euap-outbound.txt b/docs/output/azure-eastus2euap-outbound.txt new file mode 100644 index 0000000..aa86e83 --- /dev/null +++ b/docs/output/azure-eastus2euap-outbound.txt @@ -0,0 +1 @@ +72.147.6.0/23 diff --git a/docs/output/azure-eastus3-outbound.txt b/docs/output/azure-eastus3-outbound.txt new file mode 100644 index 0000000..5e7dce1 --- /dev/null +++ b/docs/output/azure-eastus3-outbound.txt @@ -0,0 +1 @@ +134.138.66.0/23 diff --git a/docs/output/azure-francecentral-inbound.txt b/docs/output/azure-francecentral-inbound.txt new file mode 100644 index 0000000..6f0dc17 --- /dev/null +++ b/docs/output/azure-francecentral-inbound.txt @@ -0,0 +1,3 @@ +20.19.113.192/28 +4.150.168.160/28 +40.89.168.225/32 diff --git a/docs/output/azure-francecentral-outbound.txt b/docs/output/azure-francecentral-outbound.txt new file mode 100644 index 0000000..7114e6e --- /dev/null +++ b/docs/output/azure-francecentral-outbound.txt @@ -0,0 +1,65 @@ +20.19.102.216/29 +20.19.103.168/29 +20.19.15.8/29 +20.19.197.128/28 +20.19.197.176/28 +20.19.197.208/28 +20.19.197.224/27 +20.19.197.64/27 +20.19.198.128/25 +20.19.198.32/27 +20.19.198.64/26 +20.19.199.0/24 +20.19.207.128/27 +20.19.207.240/28 +20.19.207.48/28 +20.19.220.40/29 +20.19.34.168/29 +20.19.35.8/29 +20.19.60.120/29 +20.19.69.0/28 +20.19.70.16/28 +20.19.71.128/28 +20.19.71.160/28 +20.19.71.192/28 +20.19.71.32/28 +20.19.71.96/28 +20.216.210.112/28 +20.216.214.32/28 +20.216.221.144/28 +20.216.222.16/28 +20.216.222.192/28 +20.40.129.80/29 +20.74.111.24/29 +20.74.123.112/28 +20.74.124.0/28 +20.74.124.96/27 +4.178.122.232/29 +4.178.251.144/28 +4.178.251.192/28 +4.178.251.224/27 +4.178.252.64/28 +4.233.152.16/29 +4.233.185.56/29 +4.233.193.64/29 +4.251.2.0/23 +40.79.136.40/29 +40.89.171.101/32 +51.103.9.176/29 +51.103.9.200/29 +51.11.194.112/29 +51.11.200.176/28 +51.11.201.128/27 +51.11.201.160/28 +51.11.201.80/28 +51.11.201.96/27 +51.11.204.160/27 +51.11.205.112/28 +51.11.205.16/28 +51.11.207.128/28 +51.11.207.192/27 +51.11.207.80/28 +51.11.207.96/27 +51.11.234.232/29 +51.11.239.192/28 +98.66.170.152/29 diff --git a/docs/output/azure-francesouth-outbound.txt b/docs/output/azure-francesouth-outbound.txt new file mode 100644 index 0000000..46f7a34 --- /dev/null +++ b/docs/output/azure-francesouth-outbound.txt @@ -0,0 +1 @@ +4.251.218.0/23 diff --git a/docs/output/azure-germanynorth-outbound.txt b/docs/output/azure-germanynorth-outbound.txt new file mode 100644 index 0000000..03db48e --- /dev/null +++ b/docs/output/azure-germanynorth-outbound.txt @@ -0,0 +1 @@ +20.170.196.0/23 diff --git a/docs/output/azure-germanywestcentral-inbound.txt b/docs/output/azure-germanywestcentral-inbound.txt new file mode 100644 index 0000000..b811f69 --- /dev/null +++ b/docs/output/azure-germanywestcentral-inbound.txt @@ -0,0 +1,3 @@ +20.52.93.41/32 +4.150.168.160/28 +98.67.225.0/28 diff --git a/docs/output/azure-germanywestcentral-outbound.txt b/docs/output/azure-germanywestcentral-outbound.txt new file mode 100644 index 0000000..f198ea4 --- /dev/null +++ b/docs/output/azure-germanywestcentral-outbound.txt @@ -0,0 +1,55 @@ +131.189.129.176/28 +131.189.129.192/26 +131.189.155.128/25 +131.189.156.0/26 +131.189.234.112/28 +131.189.234.160/28 +20.113.100.224/29 +20.170.105.112/28 +20.170.105.128/27 +20.170.105.160/28 +20.170.107.144/28 +20.170.110.0/25 +20.170.110.176/28 +20.170.111.0/25 +20.170.111.128/26 +20.170.111.192/27 +20.170.111.240/28 +20.170.56.16/29 +20.170.93.128/28 +20.170.93.192/28 +20.170.94.128/27 +20.170.94.16/28 +20.170.94.160/28 +20.170.94.32/28 +20.170.94.80/28 +20.170.94.96/27 +20.218.169.40/29 +20.218.169.48/29 +20.52.65.200/29 +20.52.93.42/32 +20.79.123.48/28 +20.79.123.96/28 +20.79.144.104/29 +20.79.144.144/28 +4.182.54.0/23 +4.185.248.16/29 +51.116.120.96/28 +9.141.186.192/28 +9.141.186.224/28 +98.67.155.0/29 +98.67.155.40/29 +98.67.157.224/28 +98.67.158.0/28 +98.67.158.128/28 +98.67.159.128/28 +98.67.159.16/28 +98.67.159.240/28 +98.67.159.32/28 +98.67.159.80/28 +98.67.159.96/27 +98.67.186.32/28 +98.67.230.40/29 +98.67.230.88/29 +98.67.231.136/29 +98.67.231.24/29 diff --git a/docs/output/azure-indonesiacentral-outbound.txt b/docs/output/azure-indonesiacentral-outbound.txt new file mode 100644 index 0000000..a86c12d --- /dev/null +++ b/docs/output/azure-indonesiacentral-outbound.txt @@ -0,0 +1 @@ +70.153.44.0/23 diff --git a/docs/output/azure-israelcentral-outbound.txt b/docs/output/azure-israelcentral-outbound.txt new file mode 100644 index 0000000..354d645 --- /dev/null +++ b/docs/output/azure-israelcentral-outbound.txt @@ -0,0 +1 @@ +51.4.18.0/23 diff --git a/docs/output/azure-israelnorthwest-outbound.txt b/docs/output/azure-israelnorthwest-outbound.txt new file mode 100644 index 0000000..394d898 --- /dev/null +++ b/docs/output/azure-israelnorthwest-outbound.txt @@ -0,0 +1 @@ +20.217.148.0/23 diff --git a/docs/output/azure-italynorth-outbound.txt b/docs/output/azure-italynorth-outbound.txt new file mode 100644 index 0000000..48e6163 --- /dev/null +++ b/docs/output/azure-italynorth-outbound.txt @@ -0,0 +1 @@ +172.213.130.0/23 diff --git a/docs/output/azure-japaneast-inbound.txt b/docs/output/azure-japaneast-inbound.txt new file mode 100644 index 0000000..288ad31 --- /dev/null +++ b/docs/output/azure-japaneast-inbound.txt @@ -0,0 +1,3 @@ +4.150.168.160/28 +4.189.194.16/28 +52.246.160.72/32 diff --git a/docs/output/azure-japaneast-outbound.txt b/docs/output/azure-japaneast-outbound.txt new file mode 100644 index 0000000..45f01f6 --- /dev/null +++ b/docs/output/azure-japaneast-outbound.txt @@ -0,0 +1,91 @@ +13.78.104.40/29 +13.78.19.235/32 +130.33.136.0/23 +135.149.26.240/28 +135.149.26.32/28 +135.149.28.128/27 +135.149.28.160/28 +135.149.28.192/28 +135.149.28.64/28 +135.149.28.96/28 +135.149.29.48/28 +135.149.29.96/28 +135.149.30.16/28 +135.149.30.176/28 +135.149.30.192/28 +135.149.31.0/28 +135.149.31.32/28 +135.149.36.0/28 +135.149.36.96/28 +135.149.37.144/28 +135.149.37.208/28 +135.149.37.240/28 +135.149.37.64/28 +135.149.38.0/27 +20.191.170.16/29 +20.194.131.88/29 +20.210.194.80/29 +20.210.195.88/29 +20.222.130.40/29 +20.222.179.176/29 +20.243.34.72/29 +20.27.133.88/29 +20.27.135.216/29 +20.27.147.208/28 +20.27.148.128/28 +20.27.148.16/28 +20.27.148.176/28 +20.27.148.64/27 +20.27.148.96/28 +20.27.149.0/28 +20.27.149.144/28 +20.27.149.80/28 +20.27.149.96/27 +20.27.158.192/28 +20.27.158.224/27 +20.27.159.0/28 +20.27.159.160/28 +20.27.159.192/27 +20.27.159.32/28 +20.27.159.80/28 +20.27.191.32/27 +20.40.91.88/29 +20.63.131.0/28 +20.63.131.144/29 +20.78.119.96/28 +20.78.224.48/28 +20.78.227.144/28 +20.78.228.32/28 +20.78.228.96/28 +20.78.229.240/28 +20.78.229.32/28 +20.78.230.48/28 +20.78.231.16/28 +20.78.231.208/28 +20.78.231.80/28 +4.189.30.112/28 +4.189.30.176/28 +4.189.30.240/28 +4.189.50.112/28 +4.189.50.176/28 +4.189.51.128/27 +4.189.58.144/28 +4.189.58.80/28 +4.189.59.160/28 +4.189.59.192/27 +4.189.59.32/28 +4.216.211.0/29 +4.241.144.24/29 +4.241.158.0/28 +4.241.158.32/28 +4.241.159.128/28 +4.241.159.160/28 +4.241.22.160/28 +4.241.23.160/28 +4.241.4.80/29 +52.155.119.80/28 +52.156.41.128/29 +52.156.51.216/29 +52.185.176.16/28 +52.185.177.0/28 +52.185.177.64/28 diff --git a/docs/output/azure-japanwest-inbound.txt b/docs/output/azure-japanwest-inbound.txt new file mode 100644 index 0000000..ef7180f --- /dev/null +++ b/docs/output/azure-japanwest-inbound.txt @@ -0,0 +1,3 @@ +138.91.16.64/28 +4.150.168.160/28 +52.246.160.72/32 diff --git a/docs/output/azure-japanwest-outbound.txt b/docs/output/azure-japanwest-outbound.txt new file mode 100644 index 0000000..20bb2ca --- /dev/null +++ b/docs/output/azure-japanwest-outbound.txt @@ -0,0 +1,14 @@ +104.214.154.0/23 +13.78.104.40/29 +13.78.19.235/32 +20.18.183.104/30 +20.194.131.88/29 +20.210.194.80/29 +20.210.195.88/29 +20.222.130.40/29 +20.222.179.176/29 +20.243.34.72/29 +20.40.91.88/29 +4.190.147.160/30 +4.216.211.0/29 +40.80.182.112/30 diff --git a/docs/output/azure-jioindiacentral-outbound.txt b/docs/output/azure-jioindiacentral-outbound.txt new file mode 100644 index 0000000..d6f78e5 --- /dev/null +++ b/docs/output/azure-jioindiacentral-outbound.txt @@ -0,0 +1 @@ +20.207.10.0/23 diff --git a/docs/output/azure-jioindiawest-outbound.txt b/docs/output/azure-jioindiawest-outbound.txt new file mode 100644 index 0000000..1e01c9e --- /dev/null +++ b/docs/output/azure-jioindiawest-outbound.txt @@ -0,0 +1 @@ +20.244.252.0/23 diff --git a/docs/output/azure-koreacentral-inbound.txt b/docs/output/azure-koreacentral-inbound.txt new file mode 100644 index 0000000..eefbbfe --- /dev/null +++ b/docs/output/azure-koreacentral-inbound.txt @@ -0,0 +1,3 @@ +20.214.117.160/28 +4.150.168.160/28 +52.141.22.164/32 diff --git a/docs/output/azure-koreacentral-outbound.txt b/docs/output/azure-koreacentral-outbound.txt new file mode 100644 index 0000000..45240a0 --- /dev/null +++ b/docs/output/azure-koreacentral-outbound.txt @@ -0,0 +1,80 @@ +20.196.229.16/28 +20.196.229.192/26 +20.196.229.32/27 +20.196.244.112/28 +20.196.254.136/29 +20.196.255.0/29 +20.196.255.24/29 +20.200.240.80/29 +20.200.241.104/29 +20.200.244.0/29 +20.200.245.168/29 +20.200.247.40/29 +20.200.249.144/28 +20.200.249.16/28 +20.200.249.208/28 +20.200.250.128/28 +20.200.251.0/26 +20.200.251.160/28 +20.200.251.224/28 +20.200.251.64/28 +20.200.252.0/27 +20.200.252.160/28 +20.200.254.224/28 +20.214.101.144/28 +20.214.102.0/26 +20.214.102.160/27 +20.214.102.224/27 +20.214.102.64/27 +20.214.103.0/28 +20.214.103.128/28 +20.214.103.160/28 +20.214.103.192/27 +20.214.103.32/27 +20.214.103.64/27 +20.214.103.96/28 +20.214.115.176/28 +20.214.118.112/28 +20.214.218.232/29 +20.214.219.80/29 +20.214.80.0/28 +20.214.83.16/28 +20.214.91.48/28 +20.214.92.0/28 +20.214.92.208/28 +20.214.93.0/28 +20.214.93.128/28 +20.214.97.160/27 +20.214.97.192/28 +20.249.52.0/28 +20.249.52.240/28 +20.249.52.48/28 +20.249.53.0/27 +20.249.53.144/28 +20.249.53.192/28 +20.249.53.224/27 +20.249.53.32/28 +20.249.53.64/26 +20.249.54.0/28 +20.249.54.32/28 +20.39.198.216/29 +20.39.199.24/29 +20.41.105.232/29 +20.41.120.112/29 +4.218.120.24/29 +4.230.108.128/26 +4.230.108.192/28 +4.230.55.144/28 +4.230.55.160/27 +4.230.55.192/27 +4.230.55.224/28 +4.230.86.192/28 +4.230.87.16/28 +4.230.87.32/27 +4.230.87.64/28 +52.141.26.120/29 +52.141.26.136/29 +52.141.6.181/32 +52.231.56.72/29 +52.231.82.0/23 +74.227.136.168/29 diff --git a/docs/output/azure-koreasouth-outbound.txt b/docs/output/azure-koreasouth-outbound.txt new file mode 100644 index 0000000..90a4c94 --- /dev/null +++ b/docs/output/azure-koreasouth-outbound.txt @@ -0,0 +1 @@ +4.243.18.0/23 diff --git a/docs/output/azure-malaysiasouth-outbound.txt b/docs/output/azure-malaysiasouth-outbound.txt new file mode 100644 index 0000000..0979e5f --- /dev/null +++ b/docs/output/azure-malaysiasouth-outbound.txt @@ -0,0 +1 @@ +85.211.70.0/23 diff --git a/docs/output/azure-malaysiawest-outbound.txt b/docs/output/azure-malaysiawest-outbound.txt new file mode 100644 index 0000000..2bfabdf --- /dev/null +++ b/docs/output/azure-malaysiawest-outbound.txt @@ -0,0 +1 @@ +20.17.150.0/23 diff --git a/docs/output/azure-mexicocentral-inbound.txt b/docs/output/azure-mexicocentral-inbound.txt new file mode 100644 index 0000000..e9a7b24 --- /dev/null +++ b/docs/output/azure-mexicocentral-inbound.txt @@ -0,0 +1,2 @@ +158.23.42.112/28 +158.23.96.34/32 diff --git a/docs/output/azure-mexicocentral-outbound.txt b/docs/output/azure-mexicocentral-outbound.txt new file mode 100644 index 0000000..41b6713 --- /dev/null +++ b/docs/output/azure-mexicocentral-outbound.txt @@ -0,0 +1,23 @@ +158.23.11.224/29 +158.23.125.176/29 +158.23.16.128/29 +158.23.16.168/29 +158.23.17.48/28 +158.23.17.80/28 +158.23.197.176/29 +158.23.24.176/29 +158.23.25.240/29 +158.23.26.48/28 +158.23.70.0/23 +158.23.96.32/32 +68.155.141.16/28 +68.155.168.0/26 +68.155.168.160/27 +68.155.168.192/26 +68.155.168.64/27 +68.155.169.0/27 +68.155.91.144/28 +68.155.91.160/27 +68.155.91.192/26 +68.155.91.64/27 +68.155.92.0/22 diff --git a/docs/output/azure-newzealandnorth-outbound.txt b/docs/output/azure-newzealandnorth-outbound.txt new file mode 100644 index 0000000..2f4096f --- /dev/null +++ b/docs/output/azure-newzealandnorth-outbound.txt @@ -0,0 +1 @@ +172.204.104.0/23 diff --git a/docs/output/azure-northcentralus-inbound.txt b/docs/output/azure-northcentralus-inbound.txt new file mode 100644 index 0000000..1a3ced6 --- /dev/null +++ b/docs/output/azure-northcentralus-inbound.txt @@ -0,0 +1,5 @@ +172.214.168.112/28 +4.150.168.160/28 +40.70.58.221/32 +40.80.188.0/32 +52.254.24.96/28 diff --git a/docs/output/azure-northcentralus-outbound.txt b/docs/output/azure-northcentralus-outbound.txt new file mode 100644 index 0000000..a05b4db --- /dev/null +++ b/docs/output/azure-northcentralus-outbound.txt @@ -0,0 +1,90 @@ +135.232.159.16/28 +135.232.159.32/29 +135.232.171.192/26 +172.183.130.144/28 +172.183.130.224/28 +172.183.130.80/28 +172.183.131.48/28 +172.183.134.0/28 +172.183.134.192/27 +172.183.134.240/28 +172.183.135.16/28 +172.183.135.32/28 +172.183.39.192/28 +172.183.53.144/28 +172.183.53.160/28 +172.183.54.0/27 +172.183.56.32/29 +172.183.73.8/29 +172.183.74.16/29 +172.183.80.240/29 +172.183.84.0/29 +172.183.88.0/28 +172.183.88.32/28 +172.183.89.0/28 +172.183.89.240/28 +172.183.90.16/28 +172.183.90.240/28 +172.183.91.16/28 +172.183.91.176/28 +20.102.194.64/28 +20.102.196.144/28 +20.102.197.0/28 +20.102.197.32/28 +20.102.197.80/28 +20.102.212.160/28 +20.102.216.144/28 +20.102.217.16/28 +20.102.218.224/28 +20.102.219.224/28 +20.102.220.176/28 +20.102.220.192/28 +20.102.223.160/28 +20.102.223.208/28 +20.125.222.168/29 +20.161.68.200/29 +20.161.68.208/29 +20.161.81.88/29 +20.161.82.48/29 +20.36.151.208/28 +20.65.4.240/28 +20.98.18.192/28 +20.98.35.224/28 +20.98.39.80/28 +20.98.62.80/28 +20.98.63.224/28 +23.101.152.95/32 +40.116.77.224/28 +40.116.78.192/28 +40.116.78.48/28 +40.116.79.32/28 +40.116.81.168/29 +40.116.84.80/29 +40.116.85.128/28 +40.116.88.80/28 +40.116.89.192/28 +40.116.90.192/27 +40.116.91.240/28 +40.116.92.128/26 +40.116.92.192/28 +40.116.92.240/28 +40.116.92.64/28 +40.116.92.96/28 +40.116.93.0/28 +40.116.93.112/28 +40.116.93.128/28 +40.116.93.208/28 +40.116.93.224/27 +40.116.93.64/28 +40.116.94.0/28 +40.116.94.64/28 +40.70.144.208/28 +40.80.188.0/28 +52.162.101.224/28 +52.162.101.80/28 +52.162.197.32/28 +52.162.20.0/23 +52.162.99.224/28 +52.240.210.16/28 +68.154.4.136/29 +74.249.107.232/29 diff --git a/docs/output/azure-northeurope-inbound.txt b/docs/output/azure-northeurope-inbound.txt new file mode 100644 index 0000000..526f198 --- /dev/null +++ b/docs/output/azure-northeurope-inbound.txt @@ -0,0 +1,5 @@ +20.103.219.240/28 +20.38.84.81/32 +4.150.168.160/28 +4.209.165.0/28 +52.232.19.246/32 diff --git a/docs/output/azure-northeurope-outbound.txt b/docs/output/azure-northeurope-outbound.txt new file mode 100644 index 0000000..3d1f0bd --- /dev/null +++ b/docs/output/azure-northeurope-outbound.txt @@ -0,0 +1,140 @@ +104.40.169.48/28 +108.143.178.64/28 +128.251.34.0/23 +13.74.105.200/29 +13.74.203.144/29 +172.201.244.200/29 +172.201.83.192/29 +172.205.204.120/29 +172.211.2.248/29 +172.211.58.192/29 +172.211.67.168/29 +20.105.102.208/29 +20.105.119.176/28 +20.105.4.176/28 +20.105.4.192/28 +20.105.5.128/27 +20.105.5.176/28 +20.105.5.32/27 +20.105.5.96/28 +20.105.59.208/28 +20.105.91.32/28 +20.105.93.224/29 +20.107.141.80/28 +20.107.142.128/27 +20.107.142.176/28 +20.107.142.208/28 +20.107.143.0/27 +20.107.143.176/28 +20.107.143.240/28 +20.107.143.96/27 +20.123.51.88/29 +20.13.189.128/27 +20.13.189.160/28 +20.13.189.192/26 +20.13.190.64/28 +20.13.229.0/28 +20.13.244.128/28 +20.13.244.208/28 +20.13.245.176/28 +20.13.245.192/28 +20.13.245.224/27 +20.13.245.48/28 +20.13.245.96/28 +20.13.246.128/26 +20.166.140.176/29 +20.166.180.216/29 +20.166.210.192/29 +20.166.215.160/27 +20.166.215.192/27 +20.166.231.176/28 +20.191.63.176/28 +20.223.126.224/28 +20.223.74.224/28 +20.223.88.192/28 +20.223.94.224/28 +20.238.4.160/29 +20.38.84.80/32 +20.50.206.192/28 +20.50.86.16/29 +20.54.27.128/28 +20.67.147.192/28 +20.67.171.224/28 +20.82.196.96/28 +20.93.108.128/28 +20.93.44.128/28 +20.93.44.224/28 +20.93.44.48/28 +20.93.59.224/28 +20.93.94.128/27 +20.93.94.192/28 +20.93.94.240/28 +20.93.95.112/28 +20.93.95.16/28 +20.93.95.208/28 +20.93.95.240/28 +20.93.95.32/27 +20.93.95.64/27 +20.93.99.16/28 +23.100.0.135/32 +4.207.218.112/28 +4.207.219.0/28 +4.207.219.192/28 +4.207.220.0/28 +4.207.82.224/29 +4.208.1.56/29 +4.208.2.152/29 +4.208.42.0/28 +4.208.44.112/28 +4.208.44.128/27 +4.208.44.176/28 +4.208.46.160/27 +4.208.46.192/28 +4.208.46.240/28 +4.208.46.64/27 +4.208.47.0/27 +4.208.47.128/28 +4.208.47.192/28 +4.208.47.48/28 +4.208.47.64/28 +4.208.50.96/28 +4.209.221.64/28 +4.210.62.208/28 +4.210.62.224/27 +4.210.63.0/26 +4.210.63.64/27 +4.210.63.96/28 +4.231.146.240/28 +4.231.147.176/28 +4.231.147.224/27 +4.231.148.224/28 +4.231.148.80/28 +4.231.148.96/27 +4.231.149.176/28 +4.231.149.32/27 +4.231.150.0/27 +4.231.150.128/28 +4.231.150.240/28 +4.231.150.48/28 +4.231.150.96/27 +4.231.151.16/28 +4.231.159.176/28 +4.245.219.224/29 +4.245.227.208/29 +51.138.238.0/28 +52.146.157.128/28 +52.155.175.32/28 +52.236.10.192/28 +52.236.11.208/29 +52.236.21.160/27 +52.236.22.32/27 +52.236.22.64/27 +52.236.23.192/28 +52.236.23.240/28 +52.236.23.64/27 +52.236.31.192/28 +68.219.139.128/25 +68.219.252.224/29 +68.219.4.64/28 +74.234.43.80/29 +98.71.25.152/29 diff --git a/docs/output/azure-norwayeast-inbound.txt b/docs/output/azure-norwayeast-inbound.txt new file mode 100644 index 0000000..23a37b8 --- /dev/null +++ b/docs/output/azure-norwayeast-inbound.txt @@ -0,0 +1,3 @@ +20.100.214.208/28 +4.150.168.160/28 +51.120.40.120/32 diff --git a/docs/output/azure-norwayeast-outbound.txt b/docs/output/azure-norwayeast-outbound.txt new file mode 100644 index 0000000..5edf130 --- /dev/null +++ b/docs/output/azure-norwayeast-outbound.txt @@ -0,0 +1,58 @@ +131.163.0.0/23 +131.163.18.160/27 +131.163.18.192/26 +131.163.19.0/27 +131.163.19.128/25 +131.163.19.64/26 +131.163.20.0/25 +131.163.20.128/26 +131.163.20.192/28 +20.100.142.192/28 +20.100.143.128/28 +20.100.154.0/27 +20.100.155.208/28 +20.100.155.240/28 +20.100.156.0/27 +20.100.156.160/27 +20.100.156.192/28 +20.100.156.48/28 +20.100.156.80/28 +20.100.157.0/26 +20.100.157.240/28 +20.100.157.64/27 +20.100.158.128/26 +20.100.158.16/28 +20.100.158.64/27 +20.100.159.144/28 +20.100.159.160/27 +20.100.159.224/27 +20.100.159.64/26 +20.100.223.144/28 +20.100.232.160/28 +20.100.62.176/28 +20.100.62.80/28 +20.100.62.96/27 +20.100.63.224/28 +20.100.63.64/26 +20.251.169.232/29 +20.251.224.40/29 +4.219.216.0/29 +4.220.16.128/26 +4.220.16.64/26 +4.235.113.232/29 +51.120.246.120/29 +51.120.246.96/29 +51.120.40.121/32 +51.120.8.208/29 +51.120.8.32/29 +51.120.89.104/29 +51.120.92.136/29 +51.120.93.232/29 +51.120.95.112/29 +51.13.3.24/29 +51.13.64.104/29 +51.13.65.144/29 +51.13.65.40/29 +51.13.65.64/29 +51.13.67.72/29 +51.13.68.176/29 diff --git a/docs/output/azure-norwaywest-outbound.txt b/docs/output/azure-norwaywest-outbound.txt new file mode 100644 index 0000000..8dd0375 --- /dev/null +++ b/docs/output/azure-norwaywest-outbound.txt @@ -0,0 +1 @@ +4.220.130.0/23 diff --git a/docs/output/azure-polandcentral-outbound.txt b/docs/output/azure-polandcentral-outbound.txt new file mode 100644 index 0000000..7404e11 --- /dev/null +++ b/docs/output/azure-polandcentral-outbound.txt @@ -0,0 +1 @@ +74.248.240.0/23 diff --git a/docs/output/azure-qatarcentral-inbound.txt b/docs/output/azure-qatarcentral-inbound.txt new file mode 100644 index 0000000..b6130f1 --- /dev/null +++ b/docs/output/azure-qatarcentral-inbound.txt @@ -0,0 +1,3 @@ +20.173.17.128/28 +20.21.32.32/32 +4.150.168.160/28 diff --git a/docs/output/azure-qatarcentral-outbound.txt b/docs/output/azure-qatarcentral-outbound.txt new file mode 100644 index 0000000..fafbfb9 --- /dev/null +++ b/docs/output/azure-qatarcentral-outbound.txt @@ -0,0 +1,11 @@ +20.173.105.232/29 +20.173.105.240/29 +20.173.50.40/29 +20.173.50.48/29 +20.173.97.224/29 +20.21.129.232/29 +20.21.32.34/32 +20.21.70.224/29 +20.21.78.112/29 +4.171.56.0/23 +4.244.16.8/29 diff --git a/docs/output/azure-southafricanorth-inbound.txt b/docs/output/azure-southafricanorth-inbound.txt new file mode 100644 index 0000000..4083e39 --- /dev/null +++ b/docs/output/azure-southafricanorth-inbound.txt @@ -0,0 +1,3 @@ +102.133.224.24/32 +20.87.238.224/28 +4.150.168.160/28 diff --git a/docs/output/azure-southafricanorth-outbound.txt b/docs/output/azure-southafricanorth-outbound.txt new file mode 100644 index 0000000..a8446c9 --- /dev/null +++ b/docs/output/azure-southafricanorth-outbound.txt @@ -0,0 +1,68 @@ +102.133.255.120/29 +102.37.214.112/29 +102.37.214.88/29 +102.37.73.120/29 +172.209.176.0/23 +20.164.108.240/28 +20.164.109.160/27 +20.164.109.192/26 +20.164.109.64/28 +20.164.110.0/27 +20.164.16.120/29 +20.164.16.48/29 +20.164.200.120/29 +20.164.24.24/29 +20.164.33.184/29 +20.164.34.56/29 +20.164.34.64/29 +20.164.83.192/26 +20.164.83.64/26 +20.164.84.128/27 +20.164.84.224/28 +20.164.84.64/26 +20.164.85.128/26 +20.164.86.16/28 +20.164.86.160/27 +20.164.86.192/27 +20.164.86.32/28 +20.164.87.0/28 +20.164.87.128/25 +20.164.87.64/26 +20.87.117.0/27 +20.87.117.112/28 +20.87.117.160/27 +20.87.117.64/28 +20.87.118.16/28 +20.87.118.64/28 +20.87.119.16/28 +20.87.123.192/27 +20.87.124.144/28 +20.87.124.160/27 +20.87.124.224/28 +20.87.125.64/26 +20.87.126.192/26 +20.87.126.64/28 +20.87.127.16/28 +20.87.220.0/29 +20.87.220.152/29 +20.87.220.224/29 +20.87.221.56/29 +20.87.226.48/28 +20.87.230.48/28 +20.87.235.0/28 +20.87.235.32/27 +20.87.250.176/28 +20.87.250.64/28 +20.87.251.0/28 +20.87.251.96/28 +20.87.253.240/28 +20.87.254.0/28 +20.87.254.208/28 +20.87.255.144/28 +20.87.255.16/28 +20.87.94.16/28 +40.123.251.136/29 +40.123.253.80/29 +40.127.5.82/32 +40.127.8.136/29 +40.127.8.48/29 diff --git a/docs/output/azure-southafricawest-outbound.txt b/docs/output/azure-southafricawest-outbound.txt new file mode 100644 index 0000000..4855679 --- /dev/null +++ b/docs/output/azure-southafricawest-outbound.txt @@ -0,0 +1 @@ +172.209.56.0/23 diff --git a/docs/output/azure-southcentralus-inbound.txt b/docs/output/azure-southcentralus-inbound.txt new file mode 100644 index 0000000..b0b8d71 --- /dev/null +++ b/docs/output/azure-southcentralus-inbound.txt @@ -0,0 +1,5 @@ +13.91.180.32/28 +4.150.168.160/28 +40.118.174.12/32 +40.119.9.208/32 +52.185.215.96/28 diff --git a/docs/output/azure-southcentralus-outbound.txt b/docs/output/azure-southcentralus-outbound.txt new file mode 100644 index 0000000..3059222 --- /dev/null +++ b/docs/output/azure-southcentralus-outbound.txt @@ -0,0 +1,69 @@ +13.66.81.0/29 +135.233.173.112/28 +135.233.174.208/28 +135.233.175.112/28 +135.233.175.128/27 +135.233.246.144/28 +135.233.246.192/27 +135.233.247.176/28 +135.233.254.128/25 +135.233.254.80/28 +135.233.255.0/24 +172.178.240.192/26 +172.178.242.0/25 +172.202.157.208/28 +172.202.157.224/28 +172.202.158.176/28 +172.202.158.192/27 +172.202.158.224/28 +172.202.189.224/28 +172.202.190.16/28 +172.202.190.64/27 +172.202.190.96/28 +172.202.237.128/28 +172.202.237.160/28 +172.202.255.128/28 +172.202.255.160/27 +172.202.255.192/26 +172.202.255.32/28 +172.206.132.32/27 +172.206.156.208/28 +172.206.187.240/28 +172.206.188.96/28 +20.118.64.240/29 +20.165.0.176/29 +20.236.165.128/28 +20.236.165.96/28 +20.236.183.16/28 +20.65.137.224/29 +20.88.199.160/29 +20.88.199.184/29 +20.88.253.112/28 +20.94.184.88/29 +20.97.109.4/30 +20.97.87.112/28 +23.98.252.0/23 +4.149.107.24/29 +4.149.98.120/29 +4.151.11.48/29 +4.151.254.176/28 +4.151.255.224/27 +4.151.27.160/28 +40.119.9.209/32 +40.124.140.48/29 +40.124.70.8/29 +40.82.248.112/28 +40.83.178.242/32 +52.153.219.224/28 +52.153.221.16/28 +52.153.221.48/28 +52.153.221.64/26 +52.153.223.200/29 +52.157.9.208/28 +52.171.120.80/28 +52.183.227.160/28 +52.183.227.192/28 +52.183.227.240/28 +52.183.228.160/28 +52.185.208.240/29 +52.185.215.96/28 diff --git a/docs/output/azure-southcentralus2-outbound.txt b/docs/output/azure-southcentralus2-outbound.txt new file mode 100644 index 0000000..a443dbf --- /dev/null +++ b/docs/output/azure-southcentralus2-outbound.txt @@ -0,0 +1 @@ +48.216.56.0/23 diff --git a/docs/output/azure-southeastasia-inbound.txt b/docs/output/azure-southeastasia-inbound.txt new file mode 100644 index 0000000..1888f8f --- /dev/null +++ b/docs/output/azure-southeastasia-inbound.txt @@ -0,0 +1,3 @@ +20.247.134.0/28 +4.150.168.160/28 +52.187.145.107/32 diff --git a/docs/output/azure-southeastasia-outbound.txt b/docs/output/azure-southeastasia-outbound.txt new file mode 100644 index 0000000..ac6cf81 --- /dev/null +++ b/docs/output/azure-southeastasia-outbound.txt @@ -0,0 +1,71 @@ +104.43.103.128/28 +104.43.103.208/28 +104.43.122.0/23 +13.67.21.136/29 +135.171.12.144/28 +135.171.12.192/28 +135.171.12.64/27 +135.171.29.176/28 +135.171.29.224/28 +135.171.30.128/26 +135.171.30.240/28 +135.171.30.96/28 +135.171.31.0/27 +135.171.31.112/28 +135.171.31.128/27 +135.171.31.160/28 +135.171.31.192/28 +135.171.31.224/27 +172.188.123.176/29 +172.188.66.64/29 +20.198.157.112/29 +20.205.195.72/29 +20.205.241.104/29 +20.205.243.240/29 +20.212.92.0/29 +20.24.135.232/29 +20.24.135.40/29 +20.247.133.192/28 +20.247.134.16/28 +20.247.134.80/28 +20.247.135.32/28 +20.247.198.208/28 +20.247.198.64/28 +20.247.199.0/28 +20.247.199.48/28 +20.247.199.80/28 +20.247.199.96/28 +20.247.243.160/27 +20.247.243.192/27 +20.247.244.224/27 +20.6.3.224/29 +20.6.34.248/29 +20.6.5.40/29 +20.6.82.208/29 +20.6.83.136/29 +23.98.114.184/29 +4.144.182.128/28 +4.144.182.176/28 +4.144.182.192/26 +4.144.183.0/28 +4.144.187.112/28 +4.144.187.128/28 +4.144.187.160/28 +4.144.187.48/28 +4.144.187.64/27 +4.144.194.112/28 +4.144.194.160/28 +4.144.204.16/28 +4.144.204.176/28 +4.144.204.224/28 +4.144.204.96/28 +4.144.205.128/27 +4.144.205.192/26 +4.144.205.64/26 +4.144.206.16/28 +4.144.206.32/27 +4.144.206.64/28 +40.119.228.16/29 +40.119.247.224/29 +52.187.0.85/32 +52.237.98.24/29 diff --git a/docs/output/azure-southeastus-outbound.txt b/docs/output/azure-southeastus-outbound.txt new file mode 100644 index 0000000..9930fd0 --- /dev/null +++ b/docs/output/azure-southeastus-outbound.txt @@ -0,0 +1 @@ +68.154.152.0/23 diff --git a/docs/output/azure-southeastus3-outbound.txt b/docs/output/azure-southeastus3-outbound.txt new file mode 100644 index 0000000..d18c332 --- /dev/null +++ b/docs/output/azure-southeastus3-outbound.txt @@ -0,0 +1 @@ +74.7.96.0/23 diff --git a/docs/output/azure-southindia-inbound.txt b/docs/output/azure-southindia-inbound.txt new file mode 100644 index 0000000..3650a1a --- /dev/null +++ b/docs/output/azure-southindia-inbound.txt @@ -0,0 +1,3 @@ +104.211.89.81/32 +4.150.168.160/28 +52.140.35.224/28 diff --git a/docs/output/azure-southindia-outbound.txt b/docs/output/azure-southindia-outbound.txt new file mode 100644 index 0000000..baadc6c --- /dev/null +++ b/docs/output/azure-southindia-outbound.txt @@ -0,0 +1,14 @@ +104.211.101.14/32 +104.211.86.40/29 +20.192.96.40/29 +20.198.25.0/29 +20.198.9.224/29 +20.244.88.56/29 +20.41.192.68/30 +40.80.55.104/29 +74.224.242.0/23 +74.224.66.24/29 +74.224.79.176/28 +98.70.75.40/29 +98.70.76.16/29 +98.70.91.64/29 diff --git a/docs/output/azure-spaincentral-outbound.txt b/docs/output/azure-spaincentral-outbound.txt new file mode 100644 index 0000000..0dc4a9c --- /dev/null +++ b/docs/output/azure-spaincentral-outbound.txt @@ -0,0 +1 @@ +158.158.24.0/23 diff --git a/docs/output/azure-swedencentral-inbound.txt b/docs/output/azure-swedencentral-inbound.txt new file mode 100644 index 0000000..cf87adc --- /dev/null +++ b/docs/output/azure-swedencentral-inbound.txt @@ -0,0 +1,3 @@ +4.150.168.160/28 +4.225.21.224/28 +51.12.41.16/32 diff --git a/docs/output/azure-swedencentral-outbound.txt b/docs/output/azure-swedencentral-outbound.txt new file mode 100644 index 0000000..ae9e8ab --- /dev/null +++ b/docs/output/azure-swedencentral-outbound.txt @@ -0,0 +1,55 @@ +135.225.228.176/28 +135.225.228.192/28 +172.160.244.40/29 +20.240.168.160/29 +20.240.168.208/29 +20.240.168.240/29 +20.240.203.248/29 +20.240.218.136/29 +20.91.166.208/28 +20.91.167.16/28 +4.223.248.0/29 +4.225.10.112/29 +4.225.10.16/28 +4.225.10.32/29 +4.225.209.208/29 +4.225.209.248/29 +4.225.6.56/29 +51.12.145.96/27 +51.12.147.176/28 +51.12.147.192/28 +51.12.147.224/28 +51.12.147.32/28 +51.12.147.64/28 +51.12.148.0/26 +51.12.148.128/27 +51.12.148.160/28 +51.12.156.64/28 +51.12.157.112/28 +51.12.158.128/28 +51.12.158.192/28 +51.12.159.176/28 +51.12.159.64/28 +51.12.231.104/29 +51.12.250.248/29 +51.12.251.232/29 +51.12.33.200/29 +51.12.41.17/32 +51.12.59.200/29 +74.241.219.128/28 +74.241.219.80/28 +74.241.219.96/27 +74.241.220.208/28 +74.241.220.224/27 +74.241.221.0/28 +9.223.111.128/28 +9.223.111.160/28 +9.223.111.192/26 +9.223.111.96/27 +9.223.120.0/23 +9.223.228.208/28 +9.223.228.240/28 +9.223.229.0/24 +9.223.230.0/24 +9.223.231.0/26 +9.223.231.64/27 diff --git a/docs/output/azure-swedensouth-outbound.txt b/docs/output/azure-swedensouth-outbound.txt new file mode 100644 index 0000000..9d7845a --- /dev/null +++ b/docs/output/azure-swedensouth-outbound.txt @@ -0,0 +1 @@ +74.241.20.0/23 diff --git a/docs/output/azure-switzerlandnorth-inbound.txt b/docs/output/azure-switzerlandnorth-inbound.txt new file mode 100644 index 0000000..8321f2b --- /dev/null +++ b/docs/output/azure-switzerlandnorth-inbound.txt @@ -0,0 +1,3 @@ +20.208.63.112/28 +4.150.168.160/28 +51.107.48.120/32 diff --git a/docs/output/azure-switzerlandnorth-outbound.txt b/docs/output/azure-switzerlandnorth-outbound.txt new file mode 100644 index 0000000..65c2323 --- /dev/null +++ b/docs/output/azure-switzerlandnorth-outbound.txt @@ -0,0 +1,31 @@ +20.203.198.184/29 +20.203.214.200/29 +20.203.218.16/29 +20.208.10.0/23 +20.208.22.136/29 +20.208.50.96/28 +20.208.55.128/28 +20.208.55.96/27 +20.250.144.32/29 +20.250.160.184/29 +20.250.29.144/29 +20.250.36.80/29 +20.250.37.112/29 +20.250.92.128/26 +20.250.92.192/27 +20.250.92.224/28 +20.250.92.96/28 +20.250.98.144/28 +20.250.98.160/27 +20.250.98.192/26 +20.250.99.0/28 +51.103.129.136/29 +51.103.129.192/29 +51.103.130.40/29 +51.103.130.88/29 +51.103.206.96/29 +51.103.214.248/29 +51.107.12.208/28 +51.107.131.80/29 +51.107.48.121/32 +74.242.170.224/29 diff --git a/docs/output/azure-switzerlandwest-inbound.txt b/docs/output/azure-switzerlandwest-inbound.txt new file mode 100644 index 0000000..7a5b9f2 --- /dev/null +++ b/docs/output/azure-switzerlandwest-inbound.txt @@ -0,0 +1,3 @@ +20.199.198.240/28 +4.150.168.160/28 +51.107.144.68/32 diff --git a/docs/output/azure-switzerlandwest-outbound.txt b/docs/output/azure-switzerlandwest-outbound.txt new file mode 100644 index 0000000..6bd56c6 --- /dev/null +++ b/docs/output/azure-switzerlandwest-outbound.txt @@ -0,0 +1,5 @@ +20.199.199.32/28 +51.107.144.68/30 +74.242.26.0/23 +74.242.58.128/27 +74.242.58.160/28 diff --git a/docs/output/azure-taiwannorth-outbound.txt b/docs/output/azure-taiwannorth-outbound.txt new file mode 100644 index 0000000..bdf70df --- /dev/null +++ b/docs/output/azure-taiwannorth-outbound.txt @@ -0,0 +1 @@ +51.53.36.0/23 diff --git a/docs/output/azure-taiwannorthwest-outbound.txt b/docs/output/azure-taiwannorthwest-outbound.txt new file mode 100644 index 0000000..45ccc55 --- /dev/null +++ b/docs/output/azure-taiwannorthwest-outbound.txt @@ -0,0 +1 @@ +167.105.224.0/23 diff --git a/docs/output/azure-uaecentral-outbound.txt b/docs/output/azure-uaecentral-outbound.txt new file mode 100644 index 0000000..659e452 --- /dev/null +++ b/docs/output/azure-uaecentral-outbound.txt @@ -0,0 +1 @@ +20.216.122.0/23 diff --git a/docs/output/azure-uaenorth-inbound.txt b/docs/output/azure-uaenorth-inbound.txt new file mode 100644 index 0000000..a6e3fa6 --- /dev/null +++ b/docs/output/azure-uaenorth-inbound.txt @@ -0,0 +1,3 @@ +20.233.156.224/28 +4.150.168.160/28 +40.123.212.253/32 diff --git a/docs/output/azure-uaenorth-outbound.txt b/docs/output/azure-uaenorth-outbound.txt new file mode 100644 index 0000000..cfc3a63 --- /dev/null +++ b/docs/output/azure-uaenorth-outbound.txt @@ -0,0 +1,60 @@ +20.174.162.24/29 +20.174.162.32/29 +20.174.35.32/28 +20.203.38.48/29 +20.203.41.32/27 +20.233.101.32/28 +20.233.109.128/28 +20.233.109.160/27 +20.233.110.16/28 +20.233.111.64/26 +20.233.116.192/28 +20.233.122.32/28 +20.233.136.176/28 +20.233.138.0/27 +20.233.138.48/28 +20.233.138.64/26 +20.233.141.128/28 +20.233.141.16/28 +20.233.141.192/28 +20.233.141.48/28 +20.233.143.112/28 +20.233.143.160/27 +20.233.157.240/28 +20.233.159.0/28 +20.233.165.0/25 +20.233.165.240/28 +20.233.166.0/26 +20.233.166.128/25 +20.233.166.64/28 +20.233.166.96/27 +20.233.167.112/28 +20.233.167.240/28 +20.233.177.16/28 +20.233.177.240/28 +20.233.179.240/28 +20.233.180.0/27 +20.233.180.112/28 +20.233.180.176/28 +20.233.180.240/28 +20.233.181.208/28 +20.233.184.128/26 +20.233.185.64/28 +20.233.186.128/27 +20.233.186.192/27 +20.233.214.192/28 +20.233.76.64/28 +20.38.158.120/29 +20.46.193.40/29 +20.46.193.88/29 +20.46.43.128/29 +20.74.162.48/28 +20.74.163.160/28 +40.120.112.128/27 +40.120.112.176/28 +40.120.112.192/27 +40.120.112.96/28 +40.120.65.136/29 +40.120.78.240/29 +40.123.218.63/32 +40.123.220.0/23 diff --git a/docs/output/azure-uksouth-inbound.txt b/docs/output/azure-uksouth-inbound.txt new file mode 100644 index 0000000..d8a6f5f --- /dev/null +++ b/docs/output/azure-uksouth-inbound.txt @@ -0,0 +1,4 @@ +20.254.183.0/28 +4.150.168.160/28 +4.158.9.160/28 +51.140.204.4/32 diff --git a/docs/output/azure-uksouth-outbound.txt b/docs/output/azure-uksouth-outbound.txt new file mode 100644 index 0000000..8c2b3c5 --- /dev/null +++ b/docs/output/azure-uksouth-outbound.txt @@ -0,0 +1,79 @@ +172.186.21.248/29 +172.186.24.0/28 +172.186.31.34/31 +20.108.135.16/28 +20.108.88.224/28 +20.108.90.64/28 +20.162.170.80/28 +20.162.184.0/29 +20.162.184.72/29 +20.162.184.96/29 +20.162.185.48/29 +20.254.87.64/28 +20.26.137.124/30 +20.26.144.248/29 +20.26.144.56/29 +20.26.148.96/29 +20.26.155.192/27 +20.26.156.224/28 +20.26.156.48/28 +20.26.156.64/28 +20.26.157.240/28 +20.26.187.144/28 +20.26.187.208/28 +20.26.187.80/28 +20.26.188.144/28 +20.26.188.160/28 +20.26.188.192/26 +20.26.188.96/27 +20.26.189.160/27 +20.26.189.192/27 +20.26.189.224/28 +20.26.189.32/27 +20.26.189.96/27 +20.26.190.128/26 +20.26.190.16/28 +20.26.190.192/27 +20.26.190.32/27 +20.26.190.64/26 +20.26.191.0/27 +20.26.191.128/26 +20.26.191.192/27 +20.26.191.224/28 +20.26.250.32/28 +20.26.251.176/28 +20.26.251.192/27 +20.26.251.64/26 +20.26.253.64/28 +20.26.254.240/28 +20.26.254.32/28 +20.26.255.160/28 +20.26.29.184/29 +20.26.44.160/28 +20.26.63.176/28 +20.26.70.80/28 +20.26.88.64/29 +20.50.110.160/29 +20.77.189.128/28 +4.158.14.48/28 +4.158.15.144/28 +4.158.15.160/27 +4.158.15.96/27 +4.158.9.160/28 +4.234.50.240/28 +4.234.51.144/28 +4.234.51.176/28 +4.234.52.32/28 +4.234.54.0/28 +4.234.54.112/28 +4.234.54.128/27 +4.250.233.0/27 +4.250.235.0/27 +4.250.236.96/28 +4.250.3.0/30 +51.132.195.36/30 +51.137.160.120/29 +51.140.151.184/30 +51.140.203.27/32 +51.140.90.0/23 +51.141.67.0/28 diff --git a/docs/output/azure-ukwest-inbound.txt b/docs/output/azure-ukwest-inbound.txt new file mode 100644 index 0000000..e35c669 --- /dev/null +++ b/docs/output/azure-ukwest-inbound.txt @@ -0,0 +1,3 @@ +20.254.183.0/28 +4.150.168.160/28 +51.140.204.4/32 diff --git a/docs/output/azure-ukwest-outbound.txt b/docs/output/azure-ukwest-outbound.txt new file mode 100644 index 0000000..4164d2b --- /dev/null +++ b/docs/output/azure-ukwest-outbound.txt @@ -0,0 +1,37 @@ +172.186.21.248/29 +172.186.24.0/28 +172.186.31.34/31 +172.187.18.0/23 +20.117.0.176/28 +20.117.0.192/27 +20.117.0.64/28 +20.117.40.64/28 +20.117.41.0/28 +20.162.13.176/28 +20.162.29.192/26 +20.45.180.64/28 +20.45.186.160/28 +20.45.189.0/28 +20.68.119.208/28 +20.68.122.64/29 +20.68.124.32/29 +20.90.20.80/28 +20.90.46.144/28 +20.90.54.16/28 +20.90.56.96/29 +20.90.57.192/28 +20.90.58.176/28 +40.81.116.16/28 +40.81.116.160/28 +40.81.124.224/28 +51.104.62.128/29 +51.11.109.96/29 +51.11.115.152/29 +51.11.117.0/28 +51.137.160.120/29 +51.137.186.176/29 +51.140.203.27/32 +51.141.67.0/28 +51.142.149.64/29 +51.142.162.136/29 +51.142.170.40/29 diff --git a/docs/output/azure-usgovarizona-inbound.txt b/docs/output/azure-usgovarizona-inbound.txt new file mode 100644 index 0000000..c171607 --- /dev/null +++ b/docs/output/azure-usgovarizona-inbound.txt @@ -0,0 +1 @@ +52.244.37.5/32 diff --git a/docs/output/azure-usgovvirginia-inbound.txt b/docs/output/azure-usgovvirginia-inbound.txt new file mode 100644 index 0000000..83f1c6b --- /dev/null +++ b/docs/output/azure-usgovvirginia-inbound.txt @@ -0,0 +1 @@ +52.227.227.164/32 diff --git a/docs/output/azure-westcentralus-inbound.txt b/docs/output/azure-westcentralus-inbound.txt new file mode 100644 index 0000000..7f87c32 --- /dev/null +++ b/docs/output/azure-westcentralus-inbound.txt @@ -0,0 +1,3 @@ +13.78.197.48/28 +4.150.168.160/28 +52.150.136.68/32 diff --git a/docs/output/azure-westcentralus-outbound.txt b/docs/output/azure-westcentralus-outbound.txt new file mode 100644 index 0000000..8f7aaff --- /dev/null +++ b/docs/output/azure-westcentralus-outbound.txt @@ -0,0 +1,58 @@ +128.24.132.0/23 +128.24.140.192/27 +128.24.162.16/28 +128.24.162.48/28 +128.24.163.0/28 +13.71.212.240/28 +13.71.212.80/28 +13.71.213.80/28 +13.78.131.208/29 +13.78.132.160/29 +13.78.133.64/29 +13.78.136.144/28 +13.78.137.64/29 +13.78.138.248/29 +13.78.141.88/29 +13.78.143.104/29 +13.78.143.32/29 +13.78.197.240/28 +13.78.204.176/28 +172.208.156.208/28 +172.208.156.80/28 +172.208.156.96/28 +172.208.219.56/29 +172.208.219.64/28 +172.215.212.160/28 +172.215.212.48/28 +172.215.212.64/28 +172.215.217.112/28 +172.215.230.160/28 +172.215.230.32/28 +4.255.167.96/28 +52.150.136.68/30 +52.161.33.144/28 +52.161.33.224/28 +52.161.35.192/27 +52.161.35.96/28 +52.161.36.128/28 +52.161.36.176/28 +52.161.36.192/28 +52.161.36.240/28 +52.161.36.96/28 +52.161.37.16/28 +52.161.37.32/27 +52.161.39.160/28 +52.161.41.176/28 +52.161.41.192/28 +52.161.44.192/28 +57.151.131.176/28 +57.151.131.208/28 +57.151.131.32/28 +57.151.131.80/28 +57.151.132.0/28 +57.151.132.112/28 +57.151.132.80/28 +57.151.141.96/27 +57.151.142.0/28 +57.151.142.112/28 +57.151.151.0/28 diff --git a/docs/output/azure-westeurope-inbound.txt b/docs/output/azure-westeurope-inbound.txt new file mode 100644 index 0000000..92c4a36 --- /dev/null +++ b/docs/output/azure-westeurope-inbound.txt @@ -0,0 +1,4 @@ +20.103.219.240/28 +4.150.168.160/28 +40.74.30.80/32 +52.232.19.246/32 diff --git a/docs/output/azure-westeurope-outbound.txt b/docs/output/azure-westeurope-outbound.txt new file mode 100644 index 0000000..3ea5679 --- /dev/null +++ b/docs/output/azure-westeurope-outbound.txt @@ -0,0 +1,127 @@ +104.40.169.48/28 +108.141.14.176/28 +108.141.15.176/28 +108.141.15.192/28 +108.143.178.64/28 +13.81.177.0/27 +13.81.177.32/28 +13.81.182.128/28 +13.81.182.160/27 +13.81.182.192/26 +13.95.73.160/27 +13.95.73.192/26 +13.95.73.80/28 +13.95.78.0/27 +13.95.79.0/28 +13.95.79.32/27 +13.95.79.96/27 +132.220.132.160/28 +132.220.133.128/25 +132.220.134.0/24 +132.220.135.0/27 +132.220.135.32/28 +132.220.205.128/27 +132.220.205.160/28 +132.220.205.80/28 +132.220.205.96/27 +132.220.243.160/28 +132.220.243.96/28 +132.220.244.144/28 +132.220.244.16/28 +132.220.244.208/28 +132.220.246.16/28 +172.199.229.176/28 +172.199.230.128/25 +172.199.231.0/24 +172.201.244.200/29 +172.201.83.192/29 +172.201.84.24/29 +172.205.204.120/29 +172.205.204.128/29 +172.211.2.248/29 +172.211.3.72/29 +172.211.58.192/29 +172.211.67.168/29 +20.101.6.96/28 +20.103.236.96/29 +20.23.100.16/28 +20.23.103.208/28 +20.23.72.224/28 +20.23.99.192/28 +20.238.132.112/29 +20.238.135.240/28 +20.238.202.200/29 +20.31.137.96/28 +20.31.237.96/28 +20.31.55.0/28 +20.4.144.176/28 +20.4.188.80/28 +20.4.189.48/28 +20.4.190.240/28 +20.4.191.128/27 +20.4.191.16/28 +20.4.191.32/28 +20.4.191.96/27 +20.4.246.96/29 +20.50.190.16/28 +20.50.190.80/28 +20.50.191.32/28 +20.50.206.192/28 +20.50.46.176/28 +20.56.199.240/28 +20.61.163.224/28 +20.61.164.0/28 +20.61.165.176/28 +20.61.166.128/28 +20.61.166.240/28 +20.61.166.80/28 +20.61.166.96/28 +20.61.167.16/28 +20.61.167.224/28 +20.61.167.48/28 +20.61.167.64/28 +20.61.176.80/28 +20.61.237.80/28 +20.61.241.0/29 +20.76.17.192/29 +23.100.0.135/32 +4.175.100.160/28 +4.175.100.80/28 +4.175.111.32/28 +4.175.205.224/28 +4.175.206.32/28 +4.175.41.128/28 +4.175.71.32/27 +4.175.77.232/29 +4.175.77.96/29 +40.114.160.224/28 +40.118.74.0/23 +40.74.30.81/32 +48.199.151.240/28 +48.199.159.192/26 +50.85.133.128/25 +50.85.133.80/28 +50.85.133.96/27 +50.85.134.0/28 +50.85.142.144/28 +50.85.143.144/28 +50.85.143.208/28 +50.85.143.64/28 +51.105.135.128/28 +51.124.138.200/29 +51.124.19.112/28 +51.124.194.248/29 +51.138.1.16/28 +52.157.220.0/28 +52.157.221.32/28 +52.174.77.112/28 +74.178.167.144/28 +74.178.167.224/28 +74.178.167.64/28 +9.163.31.16/28 +98.64.206.208/28 +98.64.206.224/27 +98.64.207.0/27 +98.64.40.168/29 +98.64.61.48/28 +98.64.62.64/28 diff --git a/docs/output/azure-westindia-inbound.txt b/docs/output/azure-westindia-inbound.txt new file mode 100644 index 0000000..ef0c2b8 --- /dev/null +++ b/docs/output/azure-westindia-inbound.txt @@ -0,0 +1,4 @@ +104.211.190.96/28 +104.211.89.81/32 +20.235.199.64/28 +4.150.168.160/28 diff --git a/docs/output/azure-westindia-outbound.txt b/docs/output/azure-westindia-outbound.txt new file mode 100644 index 0000000..7e7f0ba --- /dev/null +++ b/docs/output/azure-westindia-outbound.txt @@ -0,0 +1,13 @@ +104.211.101.14/32 +104.211.86.40/29 +20.192.96.40/29 +20.198.25.0/29 +20.198.9.224/29 +20.244.88.56/29 +4.187.74.0/23 +40.80.55.104/29 +52.136.48.68/30 +57.159.130.160/27 +98.70.75.40/29 +98.70.76.16/29 +98.70.91.64/29 diff --git a/docs/output/azure-westus-inbound.txt b/docs/output/azure-westus-inbound.txt new file mode 100644 index 0000000..016a296 --- /dev/null +++ b/docs/output/azure-westus-inbound.txt @@ -0,0 +1,3 @@ +13.91.180.32/28 +4.150.168.160/28 +40.118.174.12/32 diff --git a/docs/output/azure-westus-outbound.txt b/docs/output/azure-westus-outbound.txt new file mode 100644 index 0000000..b4facab --- /dev/null +++ b/docs/output/azure-westus-outbound.txt @@ -0,0 +1,200 @@ +104.209.2.128/28 +104.209.3.112/28 +104.209.3.144/28 +104.209.3.80/28 +104.209.9.192/28 +104.40.21.16/29 +104.40.27.80/29 +104.40.30.112/29 +104.40.37.64/28 +104.40.39.160/29 +104.42.197.32/29 +104.42.79.128/29 +13.64.52.208/29 +13.83.105.176/28 +13.83.107.112/28 +13.83.164.176/28 +13.83.164.192/28 +13.83.219.176/28 +13.83.220.0/28 +13.83.34.0/23 +13.86.187.112/28 +137.116.190.24/29 +137.135.27.176/28 +137.135.54.160/29 +138.91.150.48/28 +138.91.168.120/29 +138.91.171.48/28 +138.91.176.96/29 +138.91.228.80/28 +138.91.230.160/28 +138.91.231.208/28 +138.91.231.32/28 +138.91.231.80/28 +138.91.71.48/28 +138.91.88.152/29 +138.91.89.152/29 +138.91.95.80/29 +157.56.164.40/29 +168.61.17.72/29 +168.61.68.104/29 +168.61.77.248/29 +168.61.78.88/29 +172.178.135.208/28 +172.178.140.208/28 +172.178.240.192/26 +172.178.242.0/25 +172.184.142.128/28 +172.184.150.32/28 +172.184.166.32/28 +172.184.182.48/28 +172.184.182.64/28 +172.184.189.112/28 +172.184.206.112/28 +172.184.221.48/28 +172.184.237.80/29 +172.184.238.112/28 +172.184.238.176/28 +172.184.239.0/28 +172.185.151.64/28 +172.185.158.32/27 +172.185.167.48/28 +172.185.167.96/28 +172.185.174.128/28 +172.185.22.96/28 +172.185.94.160/28 +20.168.158.160/28 +20.184.133.128/25 +20.184.133.80/28 +20.184.133.96/27 +20.184.134.0/25 +20.184.134.128/26 +20.184.134.192/28 +20.184.141.208/28 +20.184.182.128/25 +20.184.182.32/27 +20.184.182.64/26 +20.184.183.0/25 +20.184.183.128/28 +20.184.190.144/28 +20.189.184.240/28 +20.237.235.64/28 +20.245.51.192/28 +20.253.174.160/28 +20.57.198.112/28 +20.57.198.192/28 +20.57.214.224/28 +20.57.214.80/28 +20.57.214.96/27 +20.59.112.48/29 +20.66.115.112/28 +20.66.115.128/27 +20.66.115.16/28 +20.66.115.80/28 +20.66.31.160/28 +23.99.13.80/28 +40.75.131.160/28 +40.75.139.96/28 +40.78.51.104/29 +40.82.248.112/28 +40.83.178.242/32 +40.83.196.192/29 +40.85.154.0/29 +40.86.160.216/29 +52.137.190.0/27 +52.137.190.176/28 +52.137.190.48/28 +52.155.61.96/28 +52.157.10.0/27 +52.157.10.32/28 +52.157.12.144/28 +52.157.13.144/28 +52.157.13.16/28 +52.157.13.160/27 +52.157.13.192/27 +52.157.13.64/27 +52.157.14.208/28 +52.157.14.64/28 +52.157.15.112/28 +52.157.15.64/28 +52.157.8.48/28 +52.157.9.208/28 +52.159.140.240/28 +52.159.141.160/28 +52.159.144.32/27 +52.159.144.64/28 +52.159.148.224/27 +52.159.148.80/28 +52.159.231.240/28 +52.160.131.128/25 +52.160.131.16/28 +52.160.131.32/27 +52.160.131.64/26 +52.160.145.224/28 +52.160.147.128/28 +52.160.147.160/28 +52.160.147.80/28 +52.160.148.0/28 +52.160.148.80/28 +52.160.167.96/27 +52.190.181.32/28 +52.190.181.64/28 +52.190.187.128/28 +52.190.194.176/28 +52.190.195.0/28 +52.190.195.144/28 +52.190.195.192/28 +52.190.196.96/28 +52.190.198.16/28 +52.225.33.144/28 +52.225.33.160/28 +52.225.33.224/28 +52.225.34.112/28 +52.225.34.128/28 +52.225.34.160/28 +52.225.34.208/28 +52.225.34.224/27 +52.225.35.0/27 +52.225.35.32/28 +52.225.35.80/28 +52.225.35.96/28 +52.225.36.128/28 +52.225.36.176/28 +52.225.36.208/28 +52.225.36.224/27 +52.225.36.48/28 +52.225.36.64/27 +52.225.37.0/27 +52.225.37.160/27 +52.225.37.240/28 +52.225.37.32/28 +52.225.38.192/28 +52.225.39.160/28 +52.225.53.48/28 +52.225.53.96/28 +52.234.29.64/29 +52.234.29.88/29 +52.234.32.64/28 +52.234.32.96/28 +52.234.33.0/28 +52.234.33.192/28 +52.234.36.16/28 +52.234.36.176/28 +52.234.36.80/28 +52.234.37.0/28 +52.234.37.80/28 +52.234.37.96/28 +52.234.38.0/28 +52.234.38.144/28 +52.234.38.48/28 +52.234.38.96/28 +52.238.24.48/28 +52.238.28.64/28 +52.241.146.32/28 +52.250.210.32/28 +52.250.240.192/28 +57.154.162.160/28 +57.154.166.192/28 +57.154.166.32/27 +57.154.180.112/28 +57.154.186.224/28 diff --git a/docs/output/azure-westus2-inbound.txt b/docs/output/azure-westus2-inbound.txt new file mode 100644 index 0000000..6331d77 --- /dev/null +++ b/docs/output/azure-westus2-inbound.txt @@ -0,0 +1,5 @@ +13.91.180.32/28 +20.42.129.160/32 +20.59.51.96/28 +4.150.168.160/28 +40.118.174.12/32 diff --git a/docs/output/azure-westus2-outbound.txt b/docs/output/azure-westus2-outbound.txt new file mode 100644 index 0000000..9ddece0 --- /dev/null +++ b/docs/output/azure-westus2-outbound.txt @@ -0,0 +1,88 @@ +172.178.240.192/26 +172.178.242.0/25 +172.193.246.208/28 +172.193.246.224/27 +172.193.247.0/26 +172.193.247.64/28 +20.109.130.16/29 +20.109.135.64/28 +20.115.172.144/28 +20.115.219.72/29 +20.120.130.72/29 +20.125.10.112/29 +20.252.106.152/29 +20.252.108.240/28 +20.252.110.128/27 +20.252.110.176/28 +20.252.110.192/27 +20.252.118.0/28 +20.252.118.128/28 +20.252.118.208/28 +20.252.119.16/28 +20.252.119.176/28 +20.252.119.192/28 +20.252.119.224/27 +20.252.119.48/28 +20.252.119.64/27 +20.252.119.96/28 +20.252.127.192/28 +20.252.127.224/28 +20.29.131.216/29 +20.42.129.161/32 +20.51.77.240/28 +20.51.78.112/28 +20.51.84.208/28 +20.51.84.48/28 +20.59.1.224/29 +20.59.7.176/28 +20.59.7.224/27 +20.64.190.16/28 +20.64.191.160/27 +20.64.191.240/28 +20.64.191.80/28 +20.64.195.88/29 +20.80.151.128/28 +20.80.151.16/28 +20.80.151.192/28 +20.83.195.184/29 +20.83.76.160/27 +20.83.76.192/27 +20.83.76.224/28 +20.83.76.80/28 +20.99.167.136/29 +20.99.231.176/28 +20.99.231.224/27 +4.149.164.208/28 +4.149.165.192/27 +4.149.166.128/26 +4.149.166.192/27 +4.149.166.224/28 +4.149.167.0/27 +4.149.167.128/27 +4.149.167.160/28 +4.149.167.208/28 +4.149.167.224/27 +4.149.167.96/27 +4.149.179.64/27 +4.149.188.80/28 +4.149.215.176/28 +4.149.215.224/28 +4.149.240.248/29 +4.149.78.160/27 +4.149.78.192/28 +4.149.78.80/28 +4.149.79.0/28 +4.149.79.32/28 +4.242.19.240/29 +4.246.19.192/27 +4.246.47.0/28 +4.246.47.48/28 +4.246.47.64/28 +40.64.109.200/29 +40.64.116.136/29 +40.82.248.112/28 +40.83.178.242/32 +40.91.82.72/29 +51.143.26.0/23 +52.156.144.120/29 +52.233.97.112/29 diff --git a/docs/output/azure-westus3-inbound.txt b/docs/output/azure-westus3-inbound.txt new file mode 100644 index 0000000..9a79cab --- /dev/null +++ b/docs/output/azure-westus3-inbound.txt @@ -0,0 +1,3 @@ +20.150.160.106/32 +4.150.168.160/28 +4.227.68.192/28 diff --git a/docs/output/azure-westus3-outbound.txt b/docs/output/azure-westus3-outbound.txt new file mode 100644 index 0000000..9ca2b01 --- /dev/null +++ b/docs/output/azure-westus3-outbound.txt @@ -0,0 +1,36 @@ +135.234.4.0/23 +172.173.16.208/29 +172.173.24.184/29 +20.118.178.144/29 +20.125.64.240/28 +20.125.64.8/29 +20.125.65.192/28 +20.125.67.208/28 +20.125.68.64/28 +20.125.69.160/28 +20.125.69.56/29 +20.125.70.192/27 +20.125.70.224/29 +20.14.10.48/28 +20.14.14.224/28 +20.14.14.32/28 +20.14.59.144/28 +20.14.60.192/28 +20.14.60.64/28 +20.14.60.96/28 +20.14.61.48/28 +20.14.8.32/28 +20.150.160.104/32 +20.150.227.200/29 +20.150.249.248/29 +20.163.2.88/29 +20.163.3.56/29 +20.163.31.104/29 +20.168.96.112/29 +20.168.96.96/29 +20.169.49.96/29 +20.171.230.128/28 +20.171.231.32/28 +20.25.169.176/29 +20.25.169.64/28 +20.25.173.64/28 diff --git a/docs/output/gcp-asia-northeast1-inbound.txt b/docs/output/gcp-asia-northeast1-inbound.txt new file mode 100644 index 0000000..cd7a2e1 --- /dev/null +++ b/docs/output/gcp-asia-northeast1-inbound.txt @@ -0,0 +1,3 @@ +34.146.146.176/28 +34.146.235.35/32 +34.8.0.0/28 diff --git a/docs/output/gcp-asia-northeast1-outbound.txt b/docs/output/gcp-asia-northeast1-outbound.txt new file mode 100644 index 0000000..d6f38f3 --- /dev/null +++ b/docs/output/gcp-asia-northeast1-outbound.txt @@ -0,0 +1,3 @@ +34.146.146.176/28 +34.146.86.3/32 +35.230.246.0/24 diff --git a/docs/output/gcp-asia-south1-inbound.txt b/docs/output/gcp-asia-south1-inbound.txt new file mode 100644 index 0000000..1dddd46 --- /dev/null +++ b/docs/output/gcp-asia-south1-inbound.txt @@ -0,0 +1,3 @@ +34.100.245.214/32 +34.47.163.96/28 +34.8.0.0/28 diff --git a/docs/output/gcp-asia-south1-outbound.txt b/docs/output/gcp-asia-south1-outbound.txt new file mode 100644 index 0000000..a1587c5 --- /dev/null +++ b/docs/output/gcp-asia-south1-outbound.txt @@ -0,0 +1,3 @@ +34.47.129.0/24 +34.47.163.96/28 +34.93.172.236/32 diff --git a/docs/output/gcp-asia-southeast1-inbound.txt b/docs/output/gcp-asia-southeast1-inbound.txt new file mode 100644 index 0000000..4554af5 --- /dev/null +++ b/docs/output/gcp-asia-southeast1-inbound.txt @@ -0,0 +1,3 @@ +34.126.133.240/32 +34.143.162.160/28 +34.8.0.0/28 diff --git a/docs/output/gcp-asia-southeast1-outbound.txt b/docs/output/gcp-asia-southeast1-outbound.txt new file mode 100644 index 0000000..aefc980 --- /dev/null +++ b/docs/output/gcp-asia-southeast1-outbound.txt @@ -0,0 +1,3 @@ +34.143.162.160/28 +34.87.145.17/32 +35.234.207.0/24 diff --git a/docs/output/gcp-australia-southeast1-inbound.txt b/docs/output/gcp-australia-southeast1-inbound.txt new file mode 100644 index 0000000..41630da --- /dev/null +++ b/docs/output/gcp-australia-southeast1-inbound.txt @@ -0,0 +1,3 @@ +34.40.128.0/28 +34.8.0.0/28 +35.244.88.131/32 diff --git a/docs/output/gcp-australia-southeast1-outbound.txt b/docs/output/gcp-australia-southeast1-outbound.txt new file mode 100644 index 0000000..b6e6272 --- /dev/null +++ b/docs/output/gcp-australia-southeast1-outbound.txt @@ -0,0 +1,3 @@ +34.40.128.0/28 +34.40.166.0/24 +34.87.224.132/32 diff --git a/docs/output/gcp-europe-west1-inbound.txt b/docs/output/gcp-europe-west1-inbound.txt new file mode 100644 index 0000000..0f9220e --- /dev/null +++ b/docs/output/gcp-europe-west1-inbound.txt @@ -0,0 +1,3 @@ +34.38.159.16/28 +34.8.0.0/28 +35.190.193.117/32 diff --git a/docs/output/gcp-europe-west1-outbound.txt b/docs/output/gcp-europe-west1-outbound.txt new file mode 100644 index 0000000..f53c602 --- /dev/null +++ b/docs/output/gcp-europe-west1-outbound.txt @@ -0,0 +1,3 @@ +34.38.159.16/28 +34.52.129.0/24 +35.187.166.222/32 diff --git a/docs/output/gcp-europe-west2-inbound.txt b/docs/output/gcp-europe-west2-inbound.txt new file mode 100644 index 0000000..feb604d --- /dev/null +++ b/docs/output/gcp-europe-west2-inbound.txt @@ -0,0 +1,3 @@ +34.39.0.32/28 +34.8.0.0/28 +34.89.123.127/32 diff --git a/docs/output/gcp-europe-west2-outbound.txt b/docs/output/gcp-europe-west2-outbound.txt new file mode 100644 index 0000000..f5e31b7 --- /dev/null +++ b/docs/output/gcp-europe-west2-outbound.txt @@ -0,0 +1,3 @@ +34.105.190.3/32 +34.39.0.32/28 +34.39.36.0/24 diff --git a/docs/output/gcp-europe-west3-inbound.txt b/docs/output/gcp-europe-west3-inbound.txt new file mode 100644 index 0000000..67b82c4 --- /dev/null +++ b/docs/output/gcp-europe-west3-inbound.txt @@ -0,0 +1,3 @@ +34.159.208.230/32 +34.8.0.0/28 +34.89.210.112/28 diff --git a/docs/output/gcp-europe-west3-outbound.txt b/docs/output/gcp-europe-west3-outbound.txt new file mode 100644 index 0000000..67fd0b8 --- /dev/null +++ b/docs/output/gcp-europe-west3-outbound.txt @@ -0,0 +1,3 @@ +34.89.210.112/28 +35.198.69.110/32 +35.235.43.0/24 diff --git a/docs/output/gcp-me-central2-inbound.txt b/docs/output/gcp-me-central2-inbound.txt new file mode 100644 index 0000000..46835d3 --- /dev/null +++ b/docs/output/gcp-me-central2-inbound.txt @@ -0,0 +1,2 @@ +34.166.168.240/28 +34.8.0.0/28 diff --git a/docs/output/gcp-me-central2-outbound.txt b/docs/output/gcp-me-central2-outbound.txt new file mode 100644 index 0000000..c2f0e6f --- /dev/null +++ b/docs/output/gcp-me-central2-outbound.txt @@ -0,0 +1,3 @@ +34.166.168.240/28 +34.166.35.42/32 +35.252.32.0/24 diff --git a/docs/output/gcp-northamerica-northeast1-inbound.txt b/docs/output/gcp-northamerica-northeast1-inbound.txt new file mode 100644 index 0000000..4979db2 --- /dev/null +++ b/docs/output/gcp-northamerica-northeast1-inbound.txt @@ -0,0 +1,3 @@ +34.118.158.176/28 +34.152.60.53/32 +34.8.0.0/28 diff --git a/docs/output/gcp-northamerica-northeast1-outbound.txt b/docs/output/gcp-northamerica-northeast1-outbound.txt new file mode 100644 index 0000000..b315a45 --- /dev/null +++ b/docs/output/gcp-northamerica-northeast1-outbound.txt @@ -0,0 +1,3 @@ +34.118.158.176/28 +34.152.10.135/32 +34.19.128.0/24 diff --git a/docs/output/gcp-southamerica-east1-inbound.txt b/docs/output/gcp-southamerica-east1-inbound.txt new file mode 100644 index 0000000..f19101c --- /dev/null +++ b/docs/output/gcp-southamerica-east1-inbound.txt @@ -0,0 +1,3 @@ +34.39.157.192/28 +34.8.0.0/28 +35.198.61.240/32 diff --git a/docs/output/gcp-southamerica-east1-outbound.txt b/docs/output/gcp-southamerica-east1-outbound.txt new file mode 100644 index 0000000..fbdcdf1 --- /dev/null +++ b/docs/output/gcp-southamerica-east1-outbound.txt @@ -0,0 +1,3 @@ +34.39.157.192/28 +34.95.225.209/32 +35.235.1.0/24 diff --git a/docs/output/gcp-us-central1-inbound.txt b/docs/output/gcp-us-central1-inbound.txt new file mode 100644 index 0000000..cc1a474 --- /dev/null +++ b/docs/output/gcp-us-central1-inbound.txt @@ -0,0 +1,3 @@ +34.128.32.16/28 +34.72.196.197/32 +34.8.0.0/28 diff --git a/docs/output/gcp-us-central1-outbound.txt b/docs/output/gcp-us-central1-outbound.txt new file mode 100644 index 0000000..7484c50 --- /dev/null +++ b/docs/output/gcp-us-central1-outbound.txt @@ -0,0 +1,3 @@ +34.123.97.237/32 +34.128.32.16/28 +34.33.0.0/24 diff --git a/docs/output/gcp-us-east1-inbound.txt b/docs/output/gcp-us-east1-inbound.txt new file mode 100644 index 0000000..3092e63 --- /dev/null +++ b/docs/output/gcp-us-east1-inbound.txt @@ -0,0 +1,3 @@ +34.138.66.176/28 +34.139.33.52/32 +34.8.0.0/28 diff --git a/docs/output/gcp-us-east1-outbound.txt b/docs/output/gcp-us-east1-outbound.txt new file mode 100644 index 0000000..5d1e9f4 --- /dev/null +++ b/docs/output/gcp-us-east1-outbound.txt @@ -0,0 +1,3 @@ +34.138.66.176/28 +34.23.162.0/24 +35.196.217.150/32 diff --git a/docs/output/gcp-us-east4-inbound.txt b/docs/output/gcp-us-east4-inbound.txt new file mode 100644 index 0000000..3a317a4 --- /dev/null +++ b/docs/output/gcp-us-east4-inbound.txt @@ -0,0 +1,3 @@ +34.145.222.16/28 +34.8.0.0/28 +34.86.133.227/32 diff --git a/docs/output/gcp-us-east4-outbound.txt b/docs/output/gcp-us-east4-outbound.txt new file mode 100644 index 0000000..7a97530 --- /dev/null +++ b/docs/output/gcp-us-east4-outbound.txt @@ -0,0 +1,3 @@ +34.145.222.16/28 +34.48.82.0/24 +35.186.178.4/32 diff --git a/docs/output/gcp-us-west1-inbound.txt b/docs/output/gcp-us-west1-inbound.txt new file mode 100644 index 0000000..8102aad --- /dev/null +++ b/docs/output/gcp-us-west1-inbound.txt @@ -0,0 +1,3 @@ +34.118.194.80/28 +34.8.0.0/28 +35.185.196.216/32 diff --git a/docs/output/gcp-us-west1-outbound.txt b/docs/output/gcp-us-west1-outbound.txt new file mode 100644 index 0000000..e20f3c0 --- /dev/null +++ b/docs/output/gcp-us-west1-outbound.txt @@ -0,0 +1,3 @@ +34.118.194.80/28 +34.168.98.0/24 +34.82.78.230/32 diff --git a/docs/output/gcp-us-west4-inbound.txt b/docs/output/gcp-us-west4-inbound.txt new file mode 100644 index 0000000..5ec037b --- /dev/null +++ b/docs/output/gcp-us-west4-inbound.txt @@ -0,0 +1,3 @@ +34.125.26.53/32 +34.16.224.32/28 +34.8.0.0/28 diff --git a/docs/output/gcp-us-west4-outbound.txt b/docs/output/gcp-us-west4-outbound.txt new file mode 100644 index 0000000..afda69e --- /dev/null +++ b/docs/output/gcp-us-west4-outbound.txt @@ -0,0 +1,3 @@ +34.125.175.166/32 +34.16.224.32/28 +34.50.160.0/24 diff --git a/docs/output/index.html b/docs/output/index.html index 4d8383e..0ed4c6d 100644 --- a/docs/output/index.html +++ b/docs/output/index.html @@ -9,126 +9,305 @@

    Directory Index

  • all-inbound.txt
  • all-outbound.txt
  • all.txt
  • +
  • aws-ap-northeast-1-inbound.txt
  • +
  • aws-ap-northeast-1-outbound.txt
  • aws-ap-northeast-1.txt
  • +
  • aws-ap-northeast-2-inbound.txt
  • +
  • aws-ap-northeast-2-outbound.txt
  • aws-ap-northeast-2.txt
  • +
  • aws-ap-south-1-inbound.txt
  • +
  • aws-ap-south-1-outbound.txt
  • aws-ap-south-1.txt
  • +
  • aws-ap-southeast-1-inbound.txt
  • +
  • aws-ap-southeast-1-outbound.txt
  • aws-ap-southeast-1.txt
  • +
  • aws-ap-southeast-2-inbound.txt
  • +
  • aws-ap-southeast-2-outbound.txt
  • aws-ap-southeast-2.txt
  • +
  • aws-ap-southeast-3-inbound.txt
  • +
  • aws-ap-southeast-3-outbound.txt
  • aws-ap-southeast-3.txt
  • +
  • aws-ca-central-1-inbound.txt
  • +
  • aws-ca-central-1-outbound.txt
  • aws-ca-central-1.txt
  • +
  • aws-eu-central-1-inbound.txt
  • +
  • aws-eu-central-1-outbound.txt
  • aws-eu-central-1.txt
  • +
  • aws-eu-north-1-outbound.txt
  • aws-eu-north-1.txt
  • +
  • aws-eu-west-1-inbound.txt
  • +
  • aws-eu-west-1-outbound.txt
  • aws-eu-west-1.txt
  • +
  • aws-eu-west-2-inbound.txt
  • +
  • aws-eu-west-2-outbound.txt
  • aws-eu-west-2.txt
  • +
  • aws-eu-west-3-inbound.txt
  • +
  • aws-eu-west-3-outbound.txt
  • aws-eu-west-3.txt
  • aws-inbound.txt
  • aws-outbound.txt
  • +
  • aws-sa-east-1-inbound.txt
  • +
  • aws-sa-east-1-outbound.txt
  • aws-sa-east-1.txt
  • +
  • aws-us-east-1-inbound.txt
  • +
  • aws-us-east-1-outbound.txt
  • aws-us-east-1.txt
  • +
  • aws-us-east-2-inbound.txt
  • +
  • aws-us-east-2-outbound.txt
  • aws-us-east-2.txt
  • +
  • aws-us-gov-west-1-inbound.txt
  • +
  • aws-us-gov-west-1-outbound.txt
  • aws-us-gov-west-1.txt
  • +
  • aws-us-west-1-inbound.txt
  • +
  • aws-us-west-1-outbound.txt
  • aws-us-west-1.txt
  • +
  • aws-us-west-2-inbound.txt
  • +
  • aws-us-west-2-outbound.txt
  • aws-us-west-2.txt
  • aws.txt
  • +
  • azure-australiacentral-inbound.txt
  • +
  • azure-australiacentral-outbound.txt
  • azure-australiacentral.txt
  • +
  • azure-australiacentral2-inbound.txt
  • +
  • azure-australiacentral2-outbound.txt
  • azure-australiacentral2.txt
  • +
  • azure-australiaeast-inbound.txt
  • +
  • azure-australiaeast-outbound.txt
  • azure-australiaeast.txt
  • +
  • azure-australiasoutheast-inbound.txt
  • +
  • azure-australiasoutheast-outbound.txt
  • azure-australiasoutheast.txt
  • +
  • azure-austriaeast-outbound.txt
  • azure-austriaeast.txt
  • +
  • azure-belgiumcentral-outbound.txt
  • azure-belgiumcentral.txt
  • +
  • azure-brazilsouth-inbound.txt
  • +
  • azure-brazilsouth-outbound.txt
  • azure-brazilsouth.txt
  • +
  • azure-brazilsoutheast-outbound.txt
  • azure-brazilsoutheast.txt
  • +
  • azure-canadacentral-inbound.txt
  • +
  • azure-canadacentral-outbound.txt
  • azure-canadacentral.txt
  • +
  • azure-canadaeast-inbound.txt
  • +
  • azure-canadaeast-outbound.txt
  • azure-canadaeast.txt
  • +
  • azure-centralindia-inbound.txt
  • +
  • azure-centralindia-outbound.txt
  • azure-centralindia.txt
  • +
  • azure-centralus-inbound.txt
  • +
  • azure-centralus-outbound.txt
  • azure-centralus.txt
  • +
  • azure-centraluseuap-outbound.txt
  • azure-centraluseuap.txt
  • +
  • azure-chilecentral-outbound.txt
  • azure-chilecentral.txt
  • +
  • azure-chinaeast2-inbound.txt
  • azure-chinaeast2.txt
  • +
  • azure-chinaeast3-inbound.txt
  • azure-chinaeast3.txt
  • +
  • azure-chinanorth2-inbound.txt
  • azure-chinanorth2.txt
  • +
  • azure-chinanorth3-inbound.txt
  • +
  • azure-chinanorth3-outbound.txt
  • azure-chinanorth3.txt
  • +
  • azure-denmarkeast-outbound.txt
  • azure-denmarkeast.txt
  • +
  • azure-eastasia-inbound.txt
  • +
  • azure-eastasia-outbound.txt
  • azure-eastasia.txt
  • +
  • azure-eastus-inbound.txt
  • +
  • azure-eastus-outbound.txt
  • azure-eastus.txt
  • +
  • azure-eastus2-inbound.txt
  • +
  • azure-eastus2-outbound.txt
  • azure-eastus2.txt
  • +
  • azure-eastus2euap-outbound.txt
  • azure-eastus2euap.txt
  • +
  • azure-eastus3-outbound.txt
  • azure-eastus3.txt
  • +
  • azure-francecentral-inbound.txt
  • +
  • azure-francecentral-outbound.txt
  • azure-francecentral.txt
  • +
  • azure-francesouth-outbound.txt
  • azure-francesouth.txt
  • +
  • azure-germanynorth-outbound.txt
  • azure-germanynorth.txt
  • +
  • azure-germanywestcentral-inbound.txt
  • +
  • azure-germanywestcentral-outbound.txt
  • azure-germanywestcentral.txt
  • azure-inbound.txt
  • +
  • azure-indonesiacentral-outbound.txt
  • azure-indonesiacentral.txt
  • +
  • azure-israelcentral-outbound.txt
  • azure-israelcentral.txt
  • +
  • azure-israelnorthwest-outbound.txt
  • azure-israelnorthwest.txt
  • +
  • azure-italynorth-outbound.txt
  • azure-italynorth.txt
  • +
  • azure-japaneast-inbound.txt
  • +
  • azure-japaneast-outbound.txt
  • azure-japaneast.txt
  • +
  • azure-japanwest-inbound.txt
  • +
  • azure-japanwest-outbound.txt
  • azure-japanwest.txt
  • +
  • azure-jioindiacentral-outbound.txt
  • azure-jioindiacentral.txt
  • +
  • azure-jioindiawest-outbound.txt
  • azure-jioindiawest.txt
  • +
  • azure-koreacentral-inbound.txt
  • +
  • azure-koreacentral-outbound.txt
  • azure-koreacentral.txt
  • +
  • azure-koreasouth-outbound.txt
  • azure-koreasouth.txt
  • +
  • azure-malaysiasouth-outbound.txt
  • azure-malaysiasouth.txt
  • +
  • azure-malaysiawest-outbound.txt
  • azure-malaysiawest.txt
  • +
  • azure-mexicocentral-inbound.txt
  • +
  • azure-mexicocentral-outbound.txt
  • azure-mexicocentral.txt
  • +
  • azure-newzealandnorth-outbound.txt
  • azure-newzealandnorth.txt
  • +
  • azure-northcentralus-inbound.txt
  • +
  • azure-northcentralus-outbound.txt
  • azure-northcentralus.txt
  • +
  • azure-northeurope-inbound.txt
  • +
  • azure-northeurope-outbound.txt
  • azure-northeurope.txt
  • +
  • azure-norwayeast-inbound.txt
  • +
  • azure-norwayeast-outbound.txt
  • azure-norwayeast.txt
  • +
  • azure-norwaywest-outbound.txt
  • azure-norwaywest.txt
  • azure-outbound.txt
  • +
  • azure-polandcentral-outbound.txt
  • azure-polandcentral.txt
  • +
  • azure-qatarcentral-inbound.txt
  • +
  • azure-qatarcentral-outbound.txt
  • azure-qatarcentral.txt
  • +
  • azure-southafricanorth-inbound.txt
  • +
  • azure-southafricanorth-outbound.txt
  • azure-southafricanorth.txt
  • +
  • azure-southafricawest-outbound.txt
  • azure-southafricawest.txt
  • +
  • azure-southcentralus-inbound.txt
  • +
  • azure-southcentralus-outbound.txt
  • azure-southcentralus.txt
  • +
  • azure-southcentralus2-outbound.txt
  • azure-southcentralus2.txt
  • +
  • azure-southeastasia-inbound.txt
  • +
  • azure-southeastasia-outbound.txt
  • azure-southeastasia.txt
  • +
  • azure-southeastus-outbound.txt
  • azure-southeastus.txt
  • +
  • azure-southeastus3-outbound.txt
  • azure-southeastus3.txt
  • +
  • azure-southindia-inbound.txt
  • +
  • azure-southindia-outbound.txt
  • azure-southindia.txt
  • +
  • azure-spaincentral-outbound.txt
  • azure-spaincentral.txt
  • +
  • azure-swedencentral-inbound.txt
  • +
  • azure-swedencentral-outbound.txt
  • azure-swedencentral.txt
  • +
  • azure-swedensouth-outbound.txt
  • azure-swedensouth.txt
  • +
  • azure-switzerlandnorth-inbound.txt
  • +
  • azure-switzerlandnorth-outbound.txt
  • azure-switzerlandnorth.txt
  • +
  • azure-switzerlandwest-inbound.txt
  • +
  • azure-switzerlandwest-outbound.txt
  • azure-switzerlandwest.txt
  • +
  • azure-taiwannorth-outbound.txt
  • azure-taiwannorth.txt
  • +
  • azure-taiwannorthwest-outbound.txt
  • azure-taiwannorthwest.txt
  • +
  • azure-uaecentral-outbound.txt
  • azure-uaecentral.txt
  • +
  • azure-uaenorth-inbound.txt
  • +
  • azure-uaenorth-outbound.txt
  • azure-uaenorth.txt
  • +
  • azure-uksouth-inbound.txt
  • +
  • azure-uksouth-outbound.txt
  • azure-uksouth.txt
  • +
  • azure-ukwest-inbound.txt
  • +
  • azure-ukwest-outbound.txt
  • azure-ukwest.txt
  • +
  • azure-usgovarizona-inbound.txt
  • azure-usgovarizona.txt
  • +
  • azure-usgovvirginia-inbound.txt
  • azure-usgovvirginia.txt
  • +
  • azure-westcentralus-inbound.txt
  • +
  • azure-westcentralus-outbound.txt
  • azure-westcentralus.txt
  • +
  • azure-westeurope-inbound.txt
  • +
  • azure-westeurope-outbound.txt
  • azure-westeurope.txt
  • +
  • azure-westindia-inbound.txt
  • +
  • azure-westindia-outbound.txt
  • azure-westindia.txt
  • +
  • azure-westus-inbound.txt
  • +
  • azure-westus-outbound.txt
  • azure-westus.txt
  • +
  • azure-westus2-inbound.txt
  • +
  • azure-westus2-outbound.txt
  • azure-westus2.txt
  • +
  • azure-westus3-inbound.txt
  • +
  • azure-westus3-outbound.txt
  • azure-westus3.txt
  • azure.txt
  • +
  • gcp-asia-northeast1-inbound.txt
  • +
  • gcp-asia-northeast1-outbound.txt
  • gcp-asia-northeast1.txt
  • +
  • gcp-asia-south1-inbound.txt
  • +
  • gcp-asia-south1-outbound.txt
  • gcp-asia-south1.txt
  • +
  • gcp-asia-southeast1-inbound.txt
  • +
  • gcp-asia-southeast1-outbound.txt
  • gcp-asia-southeast1.txt
  • +
  • gcp-australia-southeast1-inbound.txt
  • +
  • gcp-australia-southeast1-outbound.txt
  • gcp-australia-southeast1.txt
  • +
  • gcp-europe-west1-inbound.txt
  • +
  • gcp-europe-west1-outbound.txt
  • gcp-europe-west1.txt
  • +
  • gcp-europe-west2-inbound.txt
  • +
  • gcp-europe-west2-outbound.txt
  • gcp-europe-west2.txt
  • +
  • gcp-europe-west3-inbound.txt
  • +
  • gcp-europe-west3-outbound.txt
  • gcp-europe-west3.txt
  • gcp-inbound.txt
  • +
  • gcp-me-central2-inbound.txt
  • +
  • gcp-me-central2-outbound.txt
  • gcp-me-central2.txt
  • +
  • gcp-northamerica-northeast1-inbound.txt
  • +
  • gcp-northamerica-northeast1-outbound.txt
  • gcp-northamerica-northeast1.txt
  • gcp-outbound.txt
  • +
  • gcp-southamerica-east1-inbound.txt
  • +
  • gcp-southamerica-east1-outbound.txt
  • gcp-southamerica-east1.txt
  • +
  • gcp-us-central1-inbound.txt
  • +
  • gcp-us-central1-outbound.txt
  • gcp-us-central1.txt
  • +
  • gcp-us-east1-inbound.txt
  • +
  • gcp-us-east1-outbound.txt
  • gcp-us-east1.txt
  • +
  • gcp-us-east4-inbound.txt
  • +
  • gcp-us-east4-outbound.txt
  • gcp-us-east4.txt
  • +
  • gcp-us-west1-inbound.txt
  • +
  • gcp-us-west1-outbound.txt
  • gcp-us-west1.txt
  • +
  • gcp-us-west4-inbound.txt
  • +
  • gcp-us-west4-outbound.txt
  • gcp-us-west4.txt
  • gcp.txt
  • SHA256SUMS
Verify integrity: curl -sO <url>/SHA256SUMS && sha256sum -c SHA256SUMS
-

Generated on 2026-06-01 04:45:49 UTC

+

Generated on 2026-06-01 14:58:32 UTC

Back to databricksIPranges

\ No newline at end of file diff --git a/terraform/README.md b/terraform/README.md index 268128a..e532789 100644 --- a/terraform/README.md +++ b/terraform/README.md @@ -312,7 +312,7 @@ terraform -chdir=/tmp/dbx-smoke plan - **Write target resources for you.** You write `aws_ec2_managed_prefix_list`, `azurerm_storage_account_network_rules`, etc. — that's where provider-specific limits and quirks live (rule caps, IPv4-only constraints, naming rules). Examples above show the patterns. - **Validate cloud-provider caps** (AWS prefix list 200 entries, Azure storage account 400 IPs, etc.). Your resource block is the right place to fail on those. -- **Filter inbound vs outbound.** The published feeds already combine both. Use `source_files` against `--inbound.txt` / `-outbound.txt` from your own fork if you need split feeds. +- **Filter inbound vs outbound at module level.** The module fetches whatever filename it builds from `cloud` + `regions`. If you only want one direction, point at the published direction-scoped feed by setting `source_files` (airgapped/vendored) or by pre-mirroring `--.txt` and overriding `source_base_url`. A first-class `direction` input may land later; flag the use case on the issue tracker. - **Refresh CIDRs automatically.** Pin a ref. Bump it via PR when you want to update. --- diff --git a/test_update_outputs.py b/test_update_outputs.py index 6746d5c..361d20f 100644 --- a/test_update_outputs.py +++ b/test_update_outputs.py @@ -118,6 +118,61 @@ def test_per_region_includes_inbound_and_outbound(): assert {"3.237.73.224/28", "44.215.162.0/24"} <= aws_us_east_1 +def test_per_region_direction_files_emitted_when_cidrs_exist(): + """For a region that has both inbound and outbound CIDRs, both direction-scoped + files must be emitted alongside the combined one.""" + out = _run_main() + files = {p.name for p in out.iterdir() if p.suffix == ".txt"} + assert "aws-us-east-1-inbound.txt" in files + assert "aws-us-east-1-outbound.txt" in files + + +def test_per_region_inbound_contains_only_inbound_cidrs(): + out = _run_main() + inbound = set((out / "aws-us-east-1-inbound.txt").read_text().strip().splitlines()) + # Fixture us-east-1 inbound: 3.237.73.224/28; outbound: 44.215.162.0/24 + assert "3.237.73.224/28" in inbound + assert "44.215.162.0/24" not in inbound + + +def test_per_region_outbound_contains_only_outbound_cidrs(): + out = _run_main() + outbound = set((out / "aws-us-east-1-outbound.txt").read_text().strip().splitlines()) + assert "44.215.162.0/24" in outbound + assert "3.237.73.224/28" not in outbound + + +def test_per_region_direction_skipped_when_no_cidrs(): + """us-west-2 fixture only has outbound — the -inbound.txt must NOT be emitted. + Same ≥1-CIDR guard as the combined per-region file.""" + out = _run_main() + files = {p.name for p in out.iterdir()} + assert "aws-us-west-2-outbound.txt" in files # has outbound CIDR + assert "aws-us-west-2-inbound.txt" not in files # has no inbound CIDR + # ghost-region has neither direction with content — none of the three variants exist + assert "aws-ghost-region.txt" not in files + assert "aws-ghost-region-inbound.txt" not in files + assert "aws-ghost-region-outbound.txt" not in files + + +def test_per_region_direction_files_covered_by_sha256sums(): + """Defense-in-depth: the new direction-scoped files must be in SHA256SUMS so + consumers fetching them can verify integrity.""" + out = _run_main() + sha_lines = (out / "SHA256SUMS").read_text().splitlines() + sha_files = {line.split(" ", 1)[1] for line in sha_lines if " " in line} + assert "aws-us-east-1-inbound.txt" in sha_files + assert "aws-us-east-1-outbound.txt" in sha_files + + +def test_output_index_lists_region_direction_files(): + """The generated output/index.html must include per-region+direction files + so they're discoverable from the browser.""" + out = _run_main() + index_html = (out / "index.html").read_text() + assert "aws-us-east-1-outbound.txt" in index_html + + def test_per_cloud_files_still_emitted(): """Regression guard: the original per-cloud feeds must keep working.""" out = _run_main() diff --git a/update_outputs.py b/update_outputs.py index 70df4a0..d8f4e8f 100644 --- a/update_outputs.py +++ b/update_outputs.py @@ -79,28 +79,33 @@ def main(): ) (OUTPUT_DIR / filename).write_text(out_str.strip() + "\n" if out_str else "") - # Per-region feeds: -.txt (combined inbound+outbound). - # Emit only when the region has ≥1 CIDR after filtering — keeps the index tight - # and lets consumers reference the same URL pattern across clouds. + # Per-region feeds: -.txt (combined inbound+outbound) plus + # direction-scoped variants --inbound.txt and + # --outbound.txt. The direction-scoped feeds let consumers + # scope rule sets that can only hold one direction (e.g. Azure Storage + # Account network rules — outbound only; AWS KMS key policies — outbound). + # All three are emitted only when ≥1 CIDR exists for that slice, keeping + # the index tight and the URL pattern consistent across clouds. region_files = [] regions_by_cloud = mod.list_regions(data, cloud="all") for cloud, region_list in regions_by_cloud.items(): for region in region_list: if not region: continue - filtered = mod.extract_ips( - data, cloud=cloud, region=[region], type_filter="all" - ) - if not filtered: - continue - out_str = mod.format_output( - filtered, data, cloud, region, "simple" - ) - if not out_str: - continue - filename = f"{cloud}-{region}.txt" - (OUTPUT_DIR / filename).write_text(out_str.strip() + "\n") - region_files.append(filename) + for type_filter, suffix in (("all", ""), ("inbound", "-inbound"), ("outbound", "-outbound")): + filtered = mod.extract_ips( + data, cloud=cloud, region=[region], type_filter=type_filter + ) + if not filtered: + continue + out_str = mod.format_output( + filtered, data, cloud, region, "simple" + ) + if not out_str: + continue + filename = f"{cloud}-{region}{suffix}.txt" + (OUTPUT_DIR / filename).write_text(out_str.strip() + "\n") + region_files.append(filename) # SHA256SUMS — committed alongside the txt files so consumers can verify # integrity at fetch time. GNU sha256sum format (" "), @@ -149,7 +154,7 @@ def main(): "

JSON History

", "

Snapshot of the official Databricks IP ranges JSON per run. Click to download.

", "
", - " Looking for ready-to-use IP feeds? The current published feeds — including per-region files like aws-us-east-1.txt, azure-eastus.txt, gcp-us-central1.txt — are at output/. Use those for live firewall configs.", + " Looking for ready-to-use IP feeds? The current published feeds — including per-region files like aws-us-east-1.txt, azure-eastus.txt, gcp-us-central1.txt, and per-region + direction variants like aws-us-east-1-outbound.txt — are at output/. Use those for live firewall configs.", "

", " This page archives the raw ip-ranges.json from each run, useful for point-in-time rollback (e.g. PA EDL) and audit.", "
", @@ -215,8 +220,9 @@ def main():
  • Cloud + typeaws.txt, aws-inbound.txt, aws-outbound.txt, azure.txt, gcp.txt
  • Cloud + regionaws-us-east-1.txt, azure-eastus.txt, gcp-us-central1.txt (emitted only when the region has ≥1 CIDR)
  • +
  • Cloud + region + directionaws-us-east-1-outbound.txt, azure-eastus-inbound.txt, gcp-us-central1-outbound.txt (emitted only when that region+direction has ≥1 CIDR)
-

Use the per-region files in production to scope firewall rules to your actual workspace regions instead of allowlisting the entire cloud. Download the file you need and import it into your PA firewall configuration, EDL, AWS Managed Prefix List, Azure IP Group, or GCP Firewall Policy.

+

Use the per-region files in production to scope firewall rules to your actual workspace regions instead of allowlisting the entire cloud. The direction-scoped per-region files are the right fit when the target only accepts one direction — e.g. Azure Storage Account network rules (outbound CP IPs) or AWS KMS key policies (outbound CP IPs). Download the file you need and import it into your PA firewall configuration, EDL, AWS Managed Prefix List, Azure IP Group, or GCP Firewall Policy.

Automation-Friendly Design

This page was created to simplify the integration of Databricks IP ranges into firewalls. The project provides a static link to the latest JSON and per-cloud TXT files so you can automate allowlisting without parsing the official API response each time.