Name | pulumi-mysql JSON |
Version |
3.2.8
JSON |
| download |
home_page | None |
Summary | A Pulumi package for creating and managing mysql cloud resources. |
upload_time | 2024-12-13 18:04:20 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.9 |
license | Apache-2.0 |
keywords |
pulumi
mysql
|
VCS |
|
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
[![Actions Status](https://github.com/pulumi/pulumi-mysql/workflows/master/badge.svg)](https://github.com/pulumi/pulumi-mysql/actions)
[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com)
[![NPM version](https://badge.fury.io/js/%40pulumi%2Fmysql.svg)](https://www.npmjs.com/package/@pulumi/mysql)
[![Python version](https://badge.fury.io/py/pulumi-mysql.svg)](https://pypi.org/project/pulumi-mysql)
[![NuGet version](https://badge.fury.io/nu/pulumi.mysql.svg)](https://badge.fury.io/nu/pulumi.mysql)
[![PkgGoDev](https://pkg.go.dev/badge/github.com/pulumi/pulumi-mysql/sdk/v3/go)](https://pkg.go.dev/github.com/pulumi/pulumi-mysql/sdk/v3/go)
[![License](https://img.shields.io/npm/l/%40pulumi%2Fpulumi.svg)](https://github.com/pulumi/pulumi-mysql/blob/master/LICENSE)
# MySQL Resource Provider
The MySQL resource provider for Pulumi lets you manage MySQL 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/mysql
or `yarn`:
$ yarn add @pulumi/mysql
### Python
To use from Python, install using `pip`:
$ pip install pulumi_mysql
### Go
To use from Go, use `go get` to grab the latest version of the library
$ go get github.com/pulumi/pulumi-mysql/sdk/v3
### .NET
To use from .NET, install using `dotnet add package`:
$ dotnet add package Pulumi.Mysql
## Configuration
The following configuration points are available:
- `mysql:endpoint` (required) - The address of the MySQL server to use. Most often a "hostname:port" pair, but may also
be an absolute path to a Unix socket when the host OS is Unix-compatible. Can be set via `MYSQL_ENDPOINT` environment variable.
- `mysql:username` (required) - Username to use to authenticate with the server. Can be set via `MYSQL_USERNAME` environment variable.
- `mysql:password` - (optional) Password for the given user, if that user has a password. Can be set via `MYSQL_PASSWORD` environment variable.
- `mysql:tls` - (optional) The TLS configuration. One of false, true, or skip-verify. Defaults to `false`. Can be set via
`MYSQL_TLS_CONFIG` environment variable.
- `mysql:proxy` - (Optional) Proxy socks url, can also be sourced from `ALL_PROXY` or `all_proxy` environment variables.
## Reference
For further information, please visit [the MySQL provider docs](https://www.pulumi.com/docs/intro/cloud-providers/mysql) or for detailed reference documentation, please visit [the API docs](https://www.pulumi.com/docs/reference/pkg/mysql).
Raw data
{
"_id": null,
"home_page": null,
"name": "pulumi-mysql",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": null,
"keywords": "pulumi, mysql",
"author": null,
"author_email": null,
"download_url": "https://files.pythonhosted.org/packages/26/d3/cf1913fd8630954c334a2460daece3fe16c646e1bbb4dfa5244259814e8e/pulumi_mysql-3.2.8.tar.gz",
"platform": null,
"description": "[![Actions Status](https://github.com/pulumi/pulumi-mysql/workflows/master/badge.svg)](https://github.com/pulumi/pulumi-mysql/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%2Fmysql.svg)](https://www.npmjs.com/package/@pulumi/mysql)\n[![Python version](https://badge.fury.io/py/pulumi-mysql.svg)](https://pypi.org/project/pulumi-mysql)\n[![NuGet version](https://badge.fury.io/nu/pulumi.mysql.svg)](https://badge.fury.io/nu/pulumi.mysql)\n[![PkgGoDev](https://pkg.go.dev/badge/github.com/pulumi/pulumi-mysql/sdk/v3/go)](https://pkg.go.dev/github.com/pulumi/pulumi-mysql/sdk/v3/go)\n[![License](https://img.shields.io/npm/l/%40pulumi%2Fpulumi.svg)](https://github.com/pulumi/pulumi-mysql/blob/master/LICENSE)\n\n# MySQL Resource Provider\n\nThe MySQL resource provider for Pulumi lets you manage MySQL 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/mysql\n\nor `yarn`:\n\n $ yarn add @pulumi/mysql\n\n### Python\n\nTo use from Python, install using `pip`:\n\n $ pip install pulumi_mysql\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-mysql/sdk/v3\n\n### .NET\n\nTo use from .NET, install using `dotnet add package`:\n\n $ dotnet add package Pulumi.Mysql\n\n## Configuration\n\nThe following configuration points are available:\n\n- `mysql:endpoint` (required) - The address of the MySQL server to use. Most often a \"hostname:port\" pair, but may also\n be an absolute path to a Unix socket when the host OS is Unix-compatible. Can be set via `MYSQL_ENDPOINT` environment variable.\n- `mysql:username` (required) - Username to use to authenticate with the server. Can be set via `MYSQL_USERNAME` environment variable.\n- `mysql:password` - (optional) Password for the given user, if that user has a password. Can be set via `MYSQL_PASSWORD` environment variable.\n- `mysql:tls` - (optional) The TLS configuration. One of false, true, or skip-verify. Defaults to `false`. Can be set via\n `MYSQL_TLS_CONFIG` environment variable.\n- `mysql:proxy` - (Optional) Proxy socks url, can also be sourced from `ALL_PROXY` or `all_proxy` environment variables.\n\n## Reference\n\nFor further information, please visit [the MySQL provider docs](https://www.pulumi.com/docs/intro/cloud-providers/mysql) or for detailed reference documentation, please visit [the API docs](https://www.pulumi.com/docs/reference/pkg/mysql).\n",
"bugtrack_url": null,
"license": "Apache-2.0",
"summary": "A Pulumi package for creating and managing mysql cloud resources.",
"version": "3.2.8",
"project_urls": {
"Homepage": "https://pulumi.io",
"Repository": "https://github.com/pulumi/pulumi-mysql"
},
"split_keywords": [
"pulumi",
" mysql"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "4cce4da000224e4e278c09d41b3e8e66f47b16b7c0d63bbca8637b72fed24138",
"md5": "12ea3387a53a59f758575f213024577c",
"sha256": "1ff8fe8573d413b8e9952fd650cc8b993c1a6e44004cf0156471f1786ea4ef98"
},
"downloads": -1,
"filename": "pulumi_mysql-3.2.8-py3-none-any.whl",
"has_sig": false,
"md5_digest": "12ea3387a53a59f758575f213024577c",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.9",
"size": 22954,
"upload_time": "2024-12-13T18:04:12",
"upload_time_iso_8601": "2024-12-13T18:04:12.610923Z",
"url": "https://files.pythonhosted.org/packages/4c/ce/4da000224e4e278c09d41b3e8e66f47b16b7c0d63bbca8637b72fed24138/pulumi_mysql-3.2.8-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "26d3cf1913fd8630954c334a2460daece3fe16c646e1bbb4dfa5244259814e8e",
"md5": "cd8cb98f34a4c6376c5b5a7827391c8e",
"sha256": "4dec12ee0a8f891a1882468ae17fa05ec14c30a09e502a555fda1968cf0c3986"
},
"downloads": -1,
"filename": "pulumi_mysql-3.2.8.tar.gz",
"has_sig": false,
"md5_digest": "cd8cb98f34a4c6376c5b5a7827391c8e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 15549,
"upload_time": "2024-12-13T18:04:20",
"upload_time_iso_8601": "2024-12-13T18:04:20.760034Z",
"url": "https://files.pythonhosted.org/packages/26/d3/cf1913fd8630954c334a2460daece3fe16c646e1bbb4dfa5244259814e8e/pulumi_mysql-3.2.8.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-12-13 18:04:20",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "pulumi",
"github_project": "pulumi-mysql",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "pulumi-mysql"
}