Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: remove is tor and is blocklist until they're working #1125

Merged
merged 3 commits into from
Jan 13, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
56 changes: 6 additions & 50 deletions traffic-policy/variables/conn.ip-intel.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,9 @@ These variables can be used in Traffic Policy expressions, or they can be used t

The following variables are available under the `conn.client_ip` namespace:

| Name | Type | Description |
| ----------------------------------------------------------------- | --------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [`conn.client_ip.categories`](#connclient_ipcategories) | `list` | The list of categories that classify the `conn.client_ip`. Check out our [full list of categories](#ip-categories). |
| [`conn.client_ip.is_on_blocklist`](#connclient_ipis_on_blocklist) | `boolean` | This is true if the `conn.client_ip` is listed on a blocklist. For more information about which blocklists are included here, please check out our list of [categories](#ip-categories). |
| [`conn.client_ip.is_tor_node`](#connclient_ipis_tor_node) | `boolean` | This is true if the `conn.client_ip` is listed as a Tor exit node. |
| Name | Type | Description |
| ------------------------------------------------------- | ------ | ------------------------------------------------------------------------------------------------------------------- |
| [`conn.client_ip.categories`](#connclient_ipcategories) | `list` | The list of categories that classify the `conn.client_ip`. Check out our [full list of categories](#ip-categories). |

### `conn.client_ip.categories`

Expand All @@ -26,26 +24,6 @@ The list of categories that classify the `conn.client_ip`. Check out our [full l
}}
/>

### `conn.client_ip.is_on_blocklist`

This is true if the `conn.client_ip` is listed on a blocklist. For more information about which blocklists are included here, please check out our list of [categories](##ip-categories).

<ConfigExample
config={{
expressions: ["conn.client_ip.is_on_blocklist == true"],
}}
/>

### `conn.client_ip.is_tor_node`

This is true if the `conn.client_ip` is listed as a Tor exit node.

<ConfigExample
config={{
expressions: ["conn.client_ip.is_tor_node == true"],
}}
/>

## Client IP Autonomous System

The following variables are available under the `conn.client_ip` namespace:
Expand Down Expand Up @@ -325,11 +303,9 @@ The name of the timezone where the `conn.client_ip` is registered.

The following variables are available under the `conn.server_ip` namespace:

| Name | Type | Description |
| ----------------------------------------------------------------- | --------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [`conn.server_ip.categories`](#connserver_ipcategories) | `list` | The list of categories that classify the `conn.server_ip`. Check out our [full list of categories](#ip-categories). |
| [`conn.server_ip.is_on_blocklist`](#connserver_ipis_on_blocklist) | `boolean` | This is true if the `conn.server_ip` is listed on a blocklist. For more information about which blocklists are included here, please check out our list of [categories](##ip-categories). |
| [`conn.server_ip.is_tor_node`](#connserver_ipis_tor_node) | `boolean` | This is true if the `conn.server_ip` is listed as a Tor exit node. |
| Name | Type | Description |
| ------------------------------------------------------- | ------ | ------------------------------------------------------------------------------------------------------------------- |
| [`conn.server_ip.categories`](#connserver_ipcategories) | `list` | The list of categories that classify the `conn.server_ip`. Check out our [full list of categories](#ip-categories). |

### `conn.server_ip.categories`

Expand All @@ -341,26 +317,6 @@ The list of categories that classify the `conn.server_ip`. Check out our [full l
}}
/>

### `conn.server_ip.is_on_blocklist`

This is true if the `conn.server_ip` is listed on a blocklist. For more information about which blocklists are included here, please check out our list of [categories](#ip-categories).

<ConfigExample
config={{
expressions: ["conn.server_ip.is_on_blocklist == true"],
}}
/>

### `conn.server_ip.is_tor_node`

This is true if the `conn.server_ip` is listed as a Tor exit node.

<ConfigExample
config={{
expressions: ["conn.server_ip.is_tor_node == true"],
}}
/>

## Server IP Autonomous System

| Name | Type | Description |
Expand Down
Loading