pulumi-kafka


Namepulumi-kafka JSON
Version 3.7.4 PyPI version JSON
download
home_pageNone
SummaryA Pulumi package for creating and managing Kafka.
upload_time2024-05-10 10:34:01
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseApache-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/08/01/b3625d13eab450eb96e642c855c7adbaa88e6738ec74d944065fbe6f25a8/pulumi_kafka-3.7.4.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.7.4",
    "project_urls": {
        "Homepage": "https://pulumi.io",
        "Repository": "https://github.com/pulumi/pulumi-kafka"
    },
    "split_keywords": [
        "pulumi",
        " kafka"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d4a57df4c1adfebd0b08aa8a2590c5be6566759a2bcc63be09abffec2b007070",
                "md5": "a23a93257b957e411e3fb70012cd0e9c",
                "sha256": "ef9226c7af795bb48c8d6b7d11b410c2cb0ed33bd83f81d96a9851c4e349cff8"
            },
            "downloads": -1,
            "filename": "pulumi_kafka-3.7.4-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "a23a93257b957e411e3fb70012cd0e9c",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 23219,
            "upload_time": "2024-05-10T10:33:58",
            "upload_time_iso_8601": "2024-05-10T10:33:58.374033Z",
            "url": "https://files.pythonhosted.org/packages/d4/a5/7df4c1adfebd0b08aa8a2590c5be6566759a2bcc63be09abffec2b007070/pulumi_kafka-3.7.4-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0801b3625d13eab450eb96e642c855c7adbaa88e6738ec74d944065fbe6f25a8",
                "md5": "6ca61d91322c67f11646e3b00dc44c3f",
                "sha256": "4e4ad2bec5d3182c4f50a06d7eeffa0219369bb73d1b28a78734e7747f399ab4"
            },
            "downloads": -1,
            "filename": "pulumi_kafka-3.7.4.tar.gz",
            "has_sig": false,
            "md5_digest": "6ca61d91322c67f11646e3b00dc44c3f",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 17321,
            "upload_time": "2024-05-10T10:34:01",
            "upload_time_iso_8601": "2024-05-10T10:34:01.703463Z",
            "url": "https://files.pythonhosted.org/packages/08/01/b3625d13eab450eb96e642c855c7adbaa88e6738ec74d944065fbe6f25a8/pulumi_kafka-3.7.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-05-10 10:34:01",
    "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"
}
        
Elapsed time: 0.29512s