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

<a id="confluent-kafka-client-config-create-go"></a>

# confluent kafka client-config create go

## Description

Create a Go client configuration file, of which the client configuration file is printed to stdout and the warnings are printed to stderr. Please see our examples on how to redirect the command output.

```none
confluent kafka client-config create go [flags]
```

## Flags

```none
--context string       CLI context name.
--environment string   Environment ID.
--cluster string       Kafka cluster ID.
--api-key string       API key.
--api-secret string    API secret.
```

## 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 Go client configuration file.

```none
confluent kafka client-config create go
```

Create a Go client configuration file with arguments.

```none
confluent kafka client-config create go --environment env-123 --cluster lkc-123456 --api-key my-key --api-secret my-secret
```

Create a Go client configuration file, redirecting the configuration to a file and the warnings to a separate file.

```none
confluent kafka client-config create go 1> my-client-config-file.config 2> my-warnings-file
```

Create a Go client configuration file, redirecting the configuration to a file and keeping the warnings in the console.

```none
confluent kafka client-config create go 1> my-client-config-file.config 2>&1
```

## See Also

* [confluent kafka client-config create](index.md#confluent-kafka-client-config-create) - Create a Kafka client configuration file.
