postgresql_schema - Add or remove PostgreSQL schema from a remote host¶
New in version 2.3.
Parameters¶
Parameter | Choices/Defaults | Comments |
---|---|---|
database |
Default: postgres
|
Name of the database to connect to.
|
login_host |
Default: localhost
|
Host running the database.
|
login_password |
The password used to authenticate with.
|
|
login_unix_socket |
Path to a Unix domain socket for local connections.
|
|
login_user |
The username used to authenticate with.
|
|
name
required |
Name of the schema to add or remove.
|
|
owner |
Name of the role to set as owner of the schema.
|
|
port |
Default: 5432
|
Database port to connect to.
|
state |
|
The schema state.
|
Notes¶
Note
- This module uses psycopg2, a Python PostgreSQL database adapter. You must ensure that psycopg2 is installed on the host before using this module. If the remote host is the PostgreSQL server (which is the default case), then PostgreSQL must also be installed on the remote host. For Ubuntu-based systems, install the
postgresql
,libpq-dev
, andpython-psycopg2
packages on the remote host before using this module.
Examples¶
# Create a new schema with name "acme"
- postgresql_schema:
name: acme
# Create a new schema "acme" with a user "bob" who will own it
- postgresql_schema:
name: acme
owner: bob
Return Values¶
Common return values are documented here, the following are the fields unique to this module:
Key | Returned | Description |
---|---|---|
schema
string
|
success, changed |
Name of the schema
Sample:
acme
|
Status¶
This module is flagged as preview which means that it is not guaranteed to have a backwards compatible interface.
Maintenance¶
This module is flagged as community which means that it is maintained by the Ansible Community. See Module Maintenance & Support for more info.
For a list of other modules that are also maintained by the Ansible Community, see here.
Author¶
- Flavien Chantelot <contact@flavien.io>
Hint
If you notice any issues in this documentation you can edit this document to improve it.