Name | pulumi-consul JSON |
Version |
3.12.3
JSON |
| download |
home_page | None |
Summary | A Pulumi package for creating and managing consul resources. |
upload_time | 2024-12-13 18:04:09 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.9 |
license | Apache-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.9",
"maintainer_email": null,
"keywords": "pulumi, consul",
"author": null,
"author_email": null,
"download_url": "https://files.pythonhosted.org/packages/37/2e/f56387a8e1441ddac6cd8e969f1538f2c4da4512784d103086d32f24c5d0/pulumi_consul-3.12.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.12.3",
"project_urls": {
"Homepage": "https://pulumi.io",
"Repository": "https://github.com/pulumi/pulumi-consul"
},
"split_keywords": [
"pulumi",
" consul"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "a443fe7d377bfee4cbbc0a395459cc12ea7d7e72097ad63ceceb3e2b3c498f9c",
"md5": "2b937acbba75d275b5ae2ccef2a240c5",
"sha256": "2bb596069dd19bccd7ff3c2cbf1687e9708bae9db53fa039cea95f2262bb1a61"
},
"downloads": -1,
"filename": "pulumi_consul-3.12.3-py3-none-any.whl",
"has_sig": false,
"md5_digest": "2b937acbba75d275b5ae2ccef2a240c5",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.9",
"size": 203172,
"upload_time": "2024-12-13T18:04:03",
"upload_time_iso_8601": "2024-12-13T18:04:03.302664Z",
"url": "https://files.pythonhosted.org/packages/a4/43/fe7d377bfee4cbbc0a395459cc12ea7d7e72097ad63ceceb3e2b3c498f9c/pulumi_consul-3.12.3-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "372ef56387a8e1441ddac6cd8e969f1538f2c4da4512784d103086d32f24c5d0",
"md5": "93683de3e59ab3f1a2586807f2144e04",
"sha256": "9383dcd243c664de791e05d898ca338541126e102b3dc1aaef2e4ac5a7bb326b"
},
"downloads": -1,
"filename": "pulumi_consul-3.12.3.tar.gz",
"has_sig": false,
"md5_digest": "93683de3e59ab3f1a2586807f2144e04",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 131214,
"upload_time": "2024-12-13T18:04:09",
"upload_time_iso_8601": "2024-12-13T18:04:09.221661Z",
"url": "https://files.pythonhosted.org/packages/37/2e/f56387a8e1441ddac6cd8e969f1538f2c4da4512784d103086d32f24c5d0/pulumi_consul-3.12.3.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-12-13 18:04:09",
"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"
}