Name | pulumi-kafka JSON |
Version |
3.8.2
JSON |
| download |
home_page | None |
Summary | A Pulumi package for creating and managing Kafka. |
upload_time | 2024-12-09 10:24:15 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.8 |
license | Apache-2.0 |
keywords |
pulumi
kafka
|
VCS |
|
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
[![Actions Status](https://github.com/pulumi/pulumi-kafka/workflows/master/badge.svg)](https://github.com/pulumi/pulumi-kafka/actions)
[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com)
[![NPM version](https://badge.fury.io/js/%40pulumi%2Fkafka.svg)](https://www.npmjs.com/package/@pulumi/kafka)
[![Python version](https://badge.fury.io/py/pulumi-kafka.svg)](https://pypi.org/project/pulumi-kafka)
[![NuGet version](https://badge.fury.io/nu/pulumi.kafka.svg)](https://badge.fury.io/nu/pulumi.kafka)
[![PkgGoDev](https://pkg.go.dev/badge/github.com/pulumi/pulumi-kafka/sdk/v3/go)](https://pkg.go.dev/github.com/pulumi/pulumi-kafka/sdk/v3/go)
[![License](https://img.shields.io/npm/l/%40pulumi%2Fpulumi.svg)](https://github.com/pulumi/pulumi-kafka/blob/master/LICENSE)
# Kafka Resource Provider
The Kafka resource provider for Pulumi lets you manage Kafka resources in your cloud programs. To use
this package, please [install the Pulumi CLI first](https://pulumi.io/).
## Installing
This package is available in many languages in the standard packaging formats.
### Node.js (Java/TypeScript)
To use from JavaScript or TypeScript in Node.js, install using either `npm`:
$ npm install @pulumi/kafka
or `yarn`:
$ yarn add @pulumi/kafka
### Python
To use from Python, install using `pip`:
$ pip install pulumi_kafka
### Go
To use from Go, use `go get` to grab the latest version of the library
$ go get github.com/pulumi/pulumi-kafka/sdk/v3
### .NET
To use from .NET, install using `dotnet add package`:
$ dotnet add package Pulumi.Kafka
## Configuration
The following configuration points are available:
* kafka:bootstrapServers - (Required) A list of host:port addresses that will be used to discover the full set of alive brokers.
* kafka:caCert - (Optional) The CA certificate or path to a CA certificate file to validate the server's certificate.
* kafka:clientCert - (Optional) The client certificate or path to a file containing the client certificate -- Use for Client authentication to Kafka.
* kafka:clientKey - (Optional) The private key or path to a file containing the private key that the client certificate was issued for.
* kafka:skipTlsVerify - (Optional) Skip TLS verification. Default `false`.
* kafka:tlsEnabled - (Optional) Enable communication with the Kafka Cluster over TLS. Default `false`.
* kafka:saslUsername - (Optional) Username for SASL authentication.
* kafka:saslPassword - (Optional) Password for SASL authentication.
* kafka:saslMechanism - (Optional) Mechanism for SASL authentication. Allowed values are `plain`, `scram-sha512` and `scram-sha256`. Default `plain`.
* kafka:timeout - (Optional) Timeout in seconds. Default `120`.
## Reference
For further information, please visit [the Kafka provider docs](https://www.pulumi.com/docs/intro/cloud-providers/kafka) or for detailed reference documentation, please visit [the API docs](https://www.pulumi.com/docs/reference/pkg/kafka).
Raw data
{
"_id": null,
"home_page": null,
"name": "pulumi-kafka",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": "pulumi, kafka",
"author": null,
"author_email": null,
"download_url": "https://files.pythonhosted.org/packages/1a/73/352953c6dfdec575a7a1c7294c3dbd1b3f291e68842fff0193d7fe4cf2a1/pulumi_kafka-3.8.2.tar.gz",
"platform": null,
"description": "[![Actions Status](https://github.com/pulumi/pulumi-kafka/workflows/master/badge.svg)](https://github.com/pulumi/pulumi-kafka/actions)\n[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com)\n[![NPM version](https://badge.fury.io/js/%40pulumi%2Fkafka.svg)](https://www.npmjs.com/package/@pulumi/kafka)\n[![Python version](https://badge.fury.io/py/pulumi-kafka.svg)](https://pypi.org/project/pulumi-kafka)\n[![NuGet version](https://badge.fury.io/nu/pulumi.kafka.svg)](https://badge.fury.io/nu/pulumi.kafka)\n[![PkgGoDev](https://pkg.go.dev/badge/github.com/pulumi/pulumi-kafka/sdk/v3/go)](https://pkg.go.dev/github.com/pulumi/pulumi-kafka/sdk/v3/go)\n[![License](https://img.shields.io/npm/l/%40pulumi%2Fpulumi.svg)](https://github.com/pulumi/pulumi-kafka/blob/master/LICENSE)\n\n# Kafka Resource Provider\n\nThe Kafka resource provider for Pulumi lets you manage Kafka resources in your cloud programs. To use\nthis package, please [install the Pulumi CLI first](https://pulumi.io/).\n\n## Installing\n\nThis package is available in many languages in the standard packaging formats.\n\n### Node.js (Java/TypeScript)\n\nTo use from JavaScript or TypeScript in Node.js, install using either `npm`:\n\n $ npm install @pulumi/kafka\n\nor `yarn`:\n\n $ yarn add @pulumi/kafka\n\n### Python\n\nTo use from Python, install using `pip`:\n\n $ pip install pulumi_kafka\n\n### Go\n\nTo use from Go, use `go get` to grab the latest version of the library\n\n $ go get github.com/pulumi/pulumi-kafka/sdk/v3\n\n### .NET\n\nTo use from .NET, install using `dotnet add package`:\n\n $ dotnet add package Pulumi.Kafka\n\n## Configuration\n\nThe following configuration points are available:\n\n* kafka:bootstrapServers - (Required) A list of host:port addresses that will be used to discover the full set of alive brokers.\n* kafka:caCert - (Optional) The CA certificate or path to a CA certificate file to validate the server's certificate.\n* kafka:clientCert - (Optional) The client certificate or path to a file containing the client certificate -- Use for Client authentication to Kafka.\n* kafka:clientKey - (Optional) The private key or path to a file containing the private key that the client certificate was issued for.\n* kafka:skipTlsVerify - (Optional) Skip TLS verification. Default `false`.\n* kafka:tlsEnabled - (Optional) Enable communication with the Kafka Cluster over TLS. Default `false`.\n* kafka:saslUsername - (Optional) Username for SASL authentication.\n* kafka:saslPassword - (Optional) Password for SASL authentication.\n* kafka:saslMechanism - (Optional) Mechanism for SASL authentication. Allowed values are `plain`, `scram-sha512` and `scram-sha256`. Default `plain`.\n* kafka:timeout - (Optional) Timeout in seconds. Default `120`.\n\n## Reference\n\nFor further information, please visit [the Kafka provider docs](https://www.pulumi.com/docs/intro/cloud-providers/kafka) or for detailed reference documentation, please visit [the API docs](https://www.pulumi.com/docs/reference/pkg/kafka).\n",
"bugtrack_url": null,
"license": "Apache-2.0",
"summary": "A Pulumi package for creating and managing Kafka.",
"version": "3.8.2",
"project_urls": {
"Homepage": "https://pulumi.io",
"Repository": "https://github.com/pulumi/pulumi-kafka"
},
"split_keywords": [
"pulumi",
" kafka"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "a2fc9b3c73a27225d321449abb2545a9da7e742f29ecbebc6e8e756dea657714",
"md5": "cca85b45fedb48efcb0c9d53d1cce08b",
"sha256": "ab1997109d5dd5dec02afeb71035724d737a227f58880fb771db1d731cea7320"
},
"downloads": -1,
"filename": "pulumi_kafka-3.8.2-py3-none-any.whl",
"has_sig": false,
"md5_digest": "cca85b45fedb48efcb0c9d53d1cce08b",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 24718,
"upload_time": "2024-12-09T10:24:14",
"upload_time_iso_8601": "2024-12-09T10:24:14.315092Z",
"url": "https://files.pythonhosted.org/packages/a2/fc/9b3c73a27225d321449abb2545a9da7e742f29ecbebc6e8e756dea657714/pulumi_kafka-3.8.2-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1a73352953c6dfdec575a7a1c7294c3dbd1b3f291e68842fff0193d7fe4cf2a1",
"md5": "212c0f78adbd458424599e0a8f0237a9",
"sha256": "8b844ce19ee3221e198e75b1083a5ac0c022b7624f2c797c2087dae92200bd75"
},
"downloads": -1,
"filename": "pulumi_kafka-3.8.2.tar.gz",
"has_sig": false,
"md5_digest": "212c0f78adbd458424599e0a8f0237a9",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 18395,
"upload_time": "2024-12-09T10:24:15",
"upload_time_iso_8601": "2024-12-09T10:24:15.894266Z",
"url": "https://files.pythonhosted.org/packages/1a/73/352953c6dfdec575a7a1c7294c3dbd1b3f291e68842fff0193d7fe4cf2a1/pulumi_kafka-3.8.2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-12-09 10:24:15",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "pulumi",
"github_project": "pulumi-kafka",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "pulumi-kafka"
}