---
title: influxdb3 disable trigger
description: The influxdb3 disable trigger command disables a plugin trigger.
url: https://docs.influxdata.com/influxdb3/core/reference/cli/influxdb3/disable/trigger/
estimated_tokens: 765
product: InfluxDB 3 Core
version: core
---

# influxdb3 disable trigger

The `influxdb3 disable trigger` command disables a plugin trigger.

## Usage

```bash
influxdb3 disable trigger [OPTIONS] --database <DATABASE_NAME> <TRIGGER_NAME>
```

## Arguments:

-   **TRIGGER\_NAME**: Name of the trigger to disable

## Options

| Option |  | Description |
| --- | --- | --- |
| -H | --host | Host URL of the running InfluxDB 3 Core server (default is http://127.0.0.1:8181) |
| -d | --database | (Required) Name of the database to operate on |
|  | --token | (Required) Authentication token |
|  | --tls-ca | Path to a custom TLS certificate authority (for testing or self-signed certificates) |
|  | --tls-no-verify | Disable TLS certificate verification (Not recommended in production, useful for self-signed certificates) |
| -h | --help | Print help information |
|  | --help-all | Print detailed help information |

### Option environment variables

You can use the following environment variables to set command options:

| Environment Variable | Option |
| --- | --- |
| INFLUXDB3_HOST_URL | --host |
| INFLUXDB3_DATABASE_NAME | --database |
| INFLUXDB3_AUTH_TOKEN | --token |
| INFLUXDB3_TLS_NO_VERIFY | --tls-no-verify |
