Name | pulumi-postgresql JSON |
Version |
3.15.0
JSON |
| download |
home_page | None |
Summary | A Pulumi package for creating and managing postgresql cloud resources. |
upload_time | 2025-01-17 16:54:59 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.9 |
license | Apache-2.0 |
keywords |
pulumi
postgresql
|
VCS |
|
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
[![Actions Status](https://github.com/pulumi/pulumi-postgresql/workflows/master/badge.svg)](https://github.com/pulumi/pulumi-postgresql/actions)
[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com)
[![NPM version](https://badge.fury.io/js/%40pulumi%2Fpostgresql.svg)](https://www.npmjs.com/package/@pulumi/postgresql)
[![Python version](https://badge.fury.io/py/pulumi-postgresql.svg)](https://pypi.org/project/pulumi-postgresql)
[![NuGet version](https://badge.fury.io/nu/pulumi.postgresql.svg)](https://badge.fury.io/nu/pulumi.postgresql)
[![PkgGoDev](https://pkg.go.dev/badge/github.com/pulumi/pulumi-postgresql/sdk/v3/go)](https://pkg.go.dev/github.com/pulumi/pulumi-postgresql/sdk/v3/go)
[![License](https://img.shields.io/npm/l/%40pulumi%2Fpulumi.svg)](https://github.com/pulumi/pulumi-postgresql/blob/master/LICENSE)
# postgresql Resource Provider
The postgresql resource provider for Pulumi lets you manage postgresql 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/postgresql
or `yarn`:
$ yarn add @pulumi/postgresql
### Python
To use from Python, install using `pip`:
$ pip install pulumi_postgresql
### Go
To use from Go, use `go get` to grab the latest version of the library
$ go get github.com/pulumi/pulumi-postgresql/sdk/v3
### .NET
To use from .NET, install using `dotnet add package`:
$ dotnet add package Pulumi.Postgresql
## Configuration
The following configuration points are available:
- `postgresql:host` - (required) The address for the postgresql server connection. Can also be specified with the `PGHOST`
environment variable.
- `postgresql:port` - (optional) The port for the postgresql server connection. The default is `5432`. Can also be specified
with the `PGPORT` environment variable.
- `postgresql:database` - (optional) Database to connect to. The default is `postgres`. Can also be specified
with the `PGDATABASE` environment variable.
- `postgresql:username` - (required) Username for the server connection. The default is `postgres`. Can also be specified
with the `PGUSER` environment variable.
- `postgresql:password` - (optional) Password for the server connection. Can also be specified with the `PGPASSWORD` environment variable.
- `postgresql:database_username` - (optional) Username of the user in the database if different than connection username (See user name maps).
- `postgresql:superuser` - (optional) Should be set to false if the user to connect is not a PostgreSQL superuser (as is the case in RDS).
In this case, some features might be disabled (e.g.: Refreshing state password from database).
- `postgresql:sslmode` - (optional) Set the priority for an SSL connection to the server. Valid values for sslmode are (note: prefer is not supported by Go's lib/pq):
* `disable` - No ssl
* `require` - always SSL (the default, also skip verification)
* `verify-ca` - always SSL (verify that the certificate presented by the server was signed by a trusted CA)
* `verify-full` - Always SSL (verify that the certification presented by the server was signed by a trusted CA and the server
host name matches the one in the certificate) Additional information on the options and their implications can be seen in the libpq(3) SSL guide.
Can also be specified with the `PGSSLMODE` environment variable.
- `postgresql:connect_timeout` - (optional) Maximum wait for connection, in seconds. The default is `180s`. Zero or not specified means wait indefinitely.
Can also be specified with the `PGCONNECT_TIMEOUT` environment variable.
- `postgresql:max_connections` - (optional) Set the maximum number of open connections to the database. The default is `4`. Zero means unlimited open connections.
- `postgresql:expected_version` - (optional) Specify a hint to Terraform regarding the expected version that the provider will be talking with. This is a
required hint in order for the provider to talk with an ancient version of PostgreSQL. This parameter is expected to be a PostgreSQL Version or current.
Once a connection has been established, the provider will fingerprint the actual version. Default: 9.0.0.
- `postgresql:clientcert` - (optional) Clientcert block for configuring SSL certificate.
- `postgresql:clientcert.cert` - (required) The SSL client certificate file path. The file must contain PEM encoded data.
- `postgresql:clientcert.key` - (required) The SSL client certificate private key file path. The file must contain PEM encoded data.
## Reference
For further information, please visit [the postgresql provider docs](https://www.pulumi.com/docs/intro/cloud-providers/postgresql) or for detailed reference documentation, please visit [the API docs](https://www.pulumi.com/docs/reference/pkg/postgresql).
Raw data
{
"_id": null,
"home_page": null,
"name": "pulumi-postgresql",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": null,
"keywords": "pulumi, postgresql",
"author": null,
"author_email": null,
"download_url": "https://files.pythonhosted.org/packages/fe/93/15e7cc6cbff0adf669cc0b83cb34eba201d6b5603a5605219fcdd8fffcd4/pulumi_postgresql-3.15.0.tar.gz",
"platform": null,
"description": "[![Actions Status](https://github.com/pulumi/pulumi-postgresql/workflows/master/badge.svg)](https://github.com/pulumi/pulumi-postgresql/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%2Fpostgresql.svg)](https://www.npmjs.com/package/@pulumi/postgresql)\n[![Python version](https://badge.fury.io/py/pulumi-postgresql.svg)](https://pypi.org/project/pulumi-postgresql)\n[![NuGet version](https://badge.fury.io/nu/pulumi.postgresql.svg)](https://badge.fury.io/nu/pulumi.postgresql)\n[![PkgGoDev](https://pkg.go.dev/badge/github.com/pulumi/pulumi-postgresql/sdk/v3/go)](https://pkg.go.dev/github.com/pulumi/pulumi-postgresql/sdk/v3/go)\n[![License](https://img.shields.io/npm/l/%40pulumi%2Fpulumi.svg)](https://github.com/pulumi/pulumi-postgresql/blob/master/LICENSE)\n\n# postgresql Resource Provider\n\nThe postgresql resource provider for Pulumi lets you manage postgresql 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/postgresql\n\nor `yarn`:\n\n $ yarn add @pulumi/postgresql\n\n### Python\n\nTo use from Python, install using `pip`:\n\n $ pip install pulumi_postgresql\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-postgresql/sdk/v3\n\n### .NET\n\nTo use from .NET, install using `dotnet add package`:\n\n $ dotnet add package Pulumi.Postgresql\n\n## Configuration\n\nThe following configuration points are available:\n\n- `postgresql:host` - (required) The address for the postgresql server connection. Can also be specified with the `PGHOST`\n environment variable.\n- `postgresql:port` - (optional) The port for the postgresql server connection. The default is `5432`. Can also be specified \n with the `PGPORT` environment variable.\n- `postgresql:database` - (optional) Database to connect to. The default is `postgres`. Can also be specified \n with the `PGDATABASE` environment variable.\n- `postgresql:username` - (required) Username for the server connection. The default is `postgres`. Can also be specified \n with the `PGUSER` environment variable.\n- `postgresql:password` - (optional) Password for the server connection. Can also be specified with the `PGPASSWORD` environment variable.\n- `postgresql:database_username` - (optional) Username of the user in the database if different than connection username (See user name maps).\n- `postgresql:superuser` - (optional) Should be set to false if the user to connect is not a PostgreSQL superuser (as is the case in RDS). \n In this case, some features might be disabled (e.g.: Refreshing state password from database).\n- `postgresql:sslmode` - (optional) Set the priority for an SSL connection to the server. Valid values for sslmode are (note: prefer is not supported by Go's lib/pq):\n * `disable` - No ssl\n * `require` - always SSL (the default, also skip verification)\n * `verify-ca` - always SSL (verify that the certificate presented by the server was signed by a trusted CA)\n * `verify-full` - Always SSL (verify that the certification presented by the server was signed by a trusted CA and the server \n host name matches the one in the certificate) Additional information on the options and their implications can be seen in the libpq(3) SSL guide.\n Can also be specified with the `PGSSLMODE` environment variable. \n- `postgresql:connect_timeout` - (optional) Maximum wait for connection, in seconds. The default is `180s`. Zero or not specified means wait indefinitely. \n Can also be specified with the `PGCONNECT_TIMEOUT` environment variable.\n- `postgresql:max_connections` - (optional) Set the maximum number of open connections to the database. The default is `4`. Zero means unlimited open connections.\n- `postgresql:expected_version` - (optional) Specify a hint to Terraform regarding the expected version that the provider will be talking with. This is a \n required hint in order for the provider to talk with an ancient version of PostgreSQL. This parameter is expected to be a PostgreSQL Version or current. \n Once a connection has been established, the provider will fingerprint the actual version. Default: 9.0.0.\n- `postgresql:clientcert` - (optional) Clientcert block for configuring SSL certificate. \n - `postgresql:clientcert.cert` - (required) The SSL client certificate file path. The file must contain PEM encoded data.\n - `postgresql:clientcert.key` - (required) The SSL client certificate private key file path. The file must contain PEM encoded data.\n\n\n## Reference\n\nFor further information, please visit [the postgresql provider docs](https://www.pulumi.com/docs/intro/cloud-providers/postgresql) or for detailed reference documentation, please visit [the API docs](https://www.pulumi.com/docs/reference/pkg/postgresql).\n",
"bugtrack_url": null,
"license": "Apache-2.0",
"summary": "A Pulumi package for creating and managing postgresql cloud resources.",
"version": "3.15.0",
"project_urls": {
"Homepage": "https://pulumi.io",
"Repository": "https://github.com/pulumi/pulumi-postgresql"
},
"split_keywords": [
"pulumi",
" postgresql"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "eab768dcda016521edb1c695a51625e8616035c36ab2c61315357263c529dc84",
"md5": "9483b638614df3016497f00459d2f310",
"sha256": "d6bee44f204165d267e6cc9992b287a38f8b42dd5e358d65bf7d91a9ceb79c04"
},
"downloads": -1,
"filename": "pulumi_postgresql-3.15.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "9483b638614df3016497f00459d2f310",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.9",
"size": 72411,
"upload_time": "2025-01-17T16:54:57",
"upload_time_iso_8601": "2025-01-17T16:54:57.567092Z",
"url": "https://files.pythonhosted.org/packages/ea/b7/68dcda016521edb1c695a51625e8616035c36ab2c61315357263c529dc84/pulumi_postgresql-3.15.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fe9315e7cc6cbff0adf669cc0b83cb34eba201d6b5603a5605219fcdd8fffcd4",
"md5": "35795980142dc7f825800a9fb6217fad",
"sha256": "793f1c0bc964e23961669585cb1bd2159442f30af7e9b50aebf69dbad688ca98"
},
"downloads": -1,
"filename": "pulumi_postgresql-3.15.0.tar.gz",
"has_sig": false,
"md5_digest": "35795980142dc7f825800a9fb6217fad",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 46113,
"upload_time": "2025-01-17T16:54:59",
"upload_time_iso_8601": "2025-01-17T16:54:59.265522Z",
"url": "https://files.pythonhosted.org/packages/fe/93/15e7cc6cbff0adf669cc0b83cb34eba201d6b5603a5605219fcdd8fffcd4/pulumi_postgresql-3.15.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-01-17 16:54:59",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "pulumi",
"github_project": "pulumi-postgresql",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "pulumi-postgresql"
}