pulumi-postgresql


Namepulumi-postgresql JSON
Version 3.11.1 PyPI version JSON
download
home_pageNone
SummaryA Pulumi package for creating and managing postgresql cloud resources.
upload_time2024-05-10 02:37:44
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseApache-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.8",
    "maintainer_email": null,
    "keywords": "pulumi, postgresql",
    "author": null,
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/66/0e/8963194154632a95a2e33fe6a299c341aa6baf8cd140a363e324e7cb2673/pulumi_postgresql-3.11.1.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.11.1",
    "project_urls": {
        "Homepage": "https://pulumi.io",
        "Repository": "https://github.com/pulumi/pulumi-postgresql"
    },
    "split_keywords": [
        "pulumi",
        " postgresql"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d3e7004cdd37e278acadc699b478b9ff3b5f6bb751f70fc314b904876f01a10f",
                "md5": "98b8034d6a3eb93ddfde78cd7eb6ece4",
                "sha256": "79b2a2d034719e173856a3c5e83330aa69391254e1d47cdd5b86e0d1b9188334"
            },
            "downloads": -1,
            "filename": "pulumi_postgresql-3.11.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "98b8034d6a3eb93ddfde78cd7eb6ece4",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 66424,
            "upload_time": "2024-05-10T02:37:40",
            "upload_time_iso_8601": "2024-05-10T02:37:40.587604Z",
            "url": "https://files.pythonhosted.org/packages/d3/e7/004cdd37e278acadc699b478b9ff3b5f6bb751f70fc314b904876f01a10f/pulumi_postgresql-3.11.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "660e8963194154632a95a2e33fe6a299c341aa6baf8cd140a363e324e7cb2673",
                "md5": "e9706df305306dcec5c8e295ce8f8378",
                "sha256": "d8c1b8dbd05f4ce2e1ff7a3d51a96155304a3a5fbb829c8e9ed28a9ec93414d5"
            },
            "downloads": -1,
            "filename": "pulumi_postgresql-3.11.1.tar.gz",
            "has_sig": false,
            "md5_digest": "e9706df305306dcec5c8e295ce8f8378",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 42197,
            "upload_time": "2024-05-10T02:37:44",
            "upload_time_iso_8601": "2024-05-10T02:37:44.734235Z",
            "url": "https://files.pythonhosted.org/packages/66/0e/8963194154632a95a2e33fe6a299c341aa6baf8cd140a363e324e7cb2673/pulumi_postgresql-3.11.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-05-10 02:37:44",
    "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"
}
        
Elapsed time: 0.36790s