pulumi-consul


Namepulumi-consul JSON
Version 3.11.3 PyPI version JSON
download
home_pageNone
SummaryA Pulumi package for creating and managing consul resources.
upload_time2024-05-24 19:16:54
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseApache-2.0
keywords pulumi consul
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![Actions Status](https://github.com/pulumi/pulumi-consul/workflows/master/badge.svg)](https://github.com/pulumi/pulumi-consul/actions)
[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com)
[![NPM version](https://badge.fury.io/js/%40pulumi%2Fconsul.svg)](https://www.npmjs.com/package/@pulumi/consul)
[![Python version](https://badge.fury.io/py/pulumi-consul.svg)](https://pypi.org/project/pulumi-consul)
[![NuGet version](https://badge.fury.io/nu/pulumi.consul.svg)](https://badge.fury.io/nu/pulumi.consul)
[![PkgGoDev](https://pkg.go.dev/badge/github.com/pulumi/pulumi-consul/sdk/v3/go)](https://pkg.go.dev/github.com/pulumi/pulumi-consul/sdk/v3/go)
[![License](https://img.shields.io/npm/l/%40pulumi%2Fpulumi.svg)](https://github.com/pulumi/pulumi-consul/blob/master/LICENSE)

# Hashicorp Consul Resource Provider

The Consul resource provider for Pulumi lets you manage Consul 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/consul

or `yarn`:

    $ yarn add @pulumi/consul

### Python

To use from Python, install using `pip`:

    $ pip install pulumi_consul

### Go

To use from Go, use `go get` to grab the latest version of the library

    $ go get github.com/pulumi/pulumi-consul/sdk/v3

### .NET

To use from .NET, install using `dotnet add package`:

    $ dotnet add package Pulumi.Consul

## Configuration

The following configuration points are available:

- `consul:address` - (Optional) The HTTP(S) API address of the agent to use. Defaults to `127.0.0.1:8500`.
- `consul:scheme` - (Optional) The URL scheme of the agent to use (`http` or `https`). Defaults to `http`.
- `consul:httpAuth` - (Optional) HTTP Basic Authentication credentials to be used when communicating with Consul, in the
  format of either user or user:pass. This may also be specified using the `CONSUL_HTTP_AUTH` environment variable.
- `consul:datacenter` - (Optional) The datacenter to use. Defaults to that of the agent.
- `consul:token` - (Optional) The ACL token to use by default when making requests to the agent. Can also be specified 
  with `CONSUL_HTTP_TOKEN` or `CONSUL_TOKEN` as an environment variable.
- `consul:caFile` - (Optional) A path to a PEM-encoded certificate authority used to verify the remote agent's certificate.
- `consul:certFile` - (Optional) A path to a PEM-encoded certificate provided to the remote agent; requires use of `keyFile`.
- `consul:keyFile` - (Optional) A path to a PEM-encoded private key, required if `certFile` is specified.
- `consul:caPath` - (Optional) A path to a directory of PEM-encoded certificate authority files to use to check the 
  authenticity of client and server connections. Can also be specified with the `CONSUL_CAPATH` environment variable.
- `consul:insecureHttps` - (Optional) Boolean value to disable SSL certificate verification; setting this value to true 
  is not recommended for production use. Only use this with scheme set to `https`.

## Reference

For further information, please visit [the Consul provider docs](https://www.pulumi.com/docs/intro/cloud-providers/consul) or for detailed reference documentation, please visit [the API docs](https://www.pulumi.com/docs/reference/pkg/consul).

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "pulumi-consul",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "pulumi, consul",
    "author": null,
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/9a/a3/8a1b9aba7780370c3e2b2dd768c97f1eb56de918e5fc7b753e9e84560b63/pulumi_consul-3.11.3.tar.gz",
    "platform": null,
    "description": "[![Actions Status](https://github.com/pulumi/pulumi-consul/workflows/master/badge.svg)](https://github.com/pulumi/pulumi-consul/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%2Fconsul.svg)](https://www.npmjs.com/package/@pulumi/consul)\n[![Python version](https://badge.fury.io/py/pulumi-consul.svg)](https://pypi.org/project/pulumi-consul)\n[![NuGet version](https://badge.fury.io/nu/pulumi.consul.svg)](https://badge.fury.io/nu/pulumi.consul)\n[![PkgGoDev](https://pkg.go.dev/badge/github.com/pulumi/pulumi-consul/sdk/v3/go)](https://pkg.go.dev/github.com/pulumi/pulumi-consul/sdk/v3/go)\n[![License](https://img.shields.io/npm/l/%40pulumi%2Fpulumi.svg)](https://github.com/pulumi/pulumi-consul/blob/master/LICENSE)\n\n# Hashicorp Consul Resource Provider\n\nThe Consul resource provider for Pulumi lets you manage Consul 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/consul\n\nor `yarn`:\n\n    $ yarn add @pulumi/consul\n\n### Python\n\nTo use from Python, install using `pip`:\n\n    $ pip install pulumi_consul\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-consul/sdk/v3\n\n### .NET\n\nTo use from .NET, install using `dotnet add package`:\n\n    $ dotnet add package Pulumi.Consul\n\n## Configuration\n\nThe following configuration points are available:\n\n- `consul:address` - (Optional) The HTTP(S) API address of the agent to use. Defaults to `127.0.0.1:8500`.\n- `consul:scheme` - (Optional) The URL scheme of the agent to use (`http` or `https`). Defaults to `http`.\n- `consul:httpAuth` - (Optional) HTTP Basic Authentication credentials to be used when communicating with Consul, in the\n  format of either user or user:pass. This may also be specified using the `CONSUL_HTTP_AUTH` environment variable.\n- `consul:datacenter` - (Optional) The datacenter to use. Defaults to that of the agent.\n- `consul:token` - (Optional) The ACL token to use by default when making requests to the agent. Can also be specified \n  with `CONSUL_HTTP_TOKEN` or `CONSUL_TOKEN` as an environment variable.\n- `consul:caFile` - (Optional) A path to a PEM-encoded certificate authority used to verify the remote agent's certificate.\n- `consul:certFile` - (Optional) A path to a PEM-encoded certificate provided to the remote agent; requires use of `keyFile`.\n- `consul:keyFile` - (Optional) A path to a PEM-encoded private key, required if `certFile` is specified.\n- `consul:caPath` - (Optional) A path to a directory of PEM-encoded certificate authority files to use to check the \n  authenticity of client and server connections. Can also be specified with the `CONSUL_CAPATH` environment variable.\n- `consul:insecureHttps` - (Optional) Boolean value to disable SSL certificate verification; setting this value to true \n  is not recommended for production use. Only use this with scheme set to `https`.\n\n## Reference\n\nFor further information, please visit [the Consul provider docs](https://www.pulumi.com/docs/intro/cloud-providers/consul) or for detailed reference documentation, please visit [the API docs](https://www.pulumi.com/docs/reference/pkg/consul).\n",
    "bugtrack_url": null,
    "license": "Apache-2.0",
    "summary": "A Pulumi package for creating and managing consul resources.",
    "version": "3.11.3",
    "project_urls": {
        "Homepage": "https://pulumi.io",
        "Repository": "https://github.com/pulumi/pulumi-consul"
    },
    "split_keywords": [
        "pulumi",
        " consul"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "33ae5bce2ef53d861983ed9d690b13562702b2f0484310f386e90901e9dd9450",
                "md5": "ca2d27dbb78e75e96d6720e95e935bde",
                "sha256": "b96f6c97194495018c3dca11f2e64a03fe07f2e5d79656ef03a21206f918a5bf"
            },
            "downloads": -1,
            "filename": "pulumi_consul-3.11.3-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "ca2d27dbb78e75e96d6720e95e935bde",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 188406,
            "upload_time": "2024-05-24T19:16:51",
            "upload_time_iso_8601": "2024-05-24T19:16:51.387995Z",
            "url": "https://files.pythonhosted.org/packages/33/ae/5bce2ef53d861983ed9d690b13562702b2f0484310f386e90901e9dd9450/pulumi_consul-3.11.3-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9aa38a1b9aba7780370c3e2b2dd768c97f1eb56de918e5fc7b753e9e84560b63",
                "md5": "afc22f9f92086908e4983775a81ace11",
                "sha256": "75790b3bd82616ac096b084a8c494739f09a94e907e5a36ace16a744792b42c3"
            },
            "downloads": -1,
            "filename": "pulumi_consul-3.11.3.tar.gz",
            "has_sig": false,
            "md5_digest": "afc22f9f92086908e4983775a81ace11",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 122854,
            "upload_time": "2024-05-24T19:16:54",
            "upload_time_iso_8601": "2024-05-24T19:16:54.763374Z",
            "url": "https://files.pythonhosted.org/packages/9a/a3/8a1b9aba7780370c3e2b2dd768c97f1eb56de918e5fc7b753e9e84560b63/pulumi_consul-3.11.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-05-24 19:16:54",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "pulumi",
    "github_project": "pulumi-consul",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pulumi-consul"
}
        
Elapsed time: 0.26730s