<!-- WARNING: This documentation is auto-generated from the confluentinc/cli repository and should not be manually edited. -->

<a id="confluent-ccpm-plugin-create"></a>

# confluent ccpm plugin create

## Description

Create a custom Connect plugin.

```none
confluent ccpm plugin create [flags]
```

## Flags

```none
    --name string          REQUIRED: Display name of the custom Connect plugin.
    --cloud string         REQUIRED: Specify the cloud provider as "aws", "azure", or "gcp".
    --environment string   Environment ID.
    --description string   Description of the custom Connect plugin.
-o, --output string        Specify the output format as "human", "json", or "yaml". (default "human")
```

## Global Flags

```none
-h, --help            Show help for this command.
    --unsafe-trace    Equivalent to -vvvv, but also log HTTP requests and responses which might contain plaintext secrets.
-v, --verbose count   Increase verbosity (-v for warn, -vv for info, -vvv for debug, -vvvv for trace).
```

## Examples

Create a custom Connect plugin for AWS.

```none
confluent ccpm plugin create --name "My Custom Plugin" --cloud AWS --description "A custom connector for data processing" --environment env-12345
```

Create a custom Connect plugin for GCP with minimal description.

```none
confluent ccpm plugin create --name "GCP Data Connector" --cloud GCP --environment env-abcdef
```

## See Also

* [confluent ccpm plugin](index.md#confluent-ccpm-plugin) - Manage custom Connect plugins.
