generated from ansible-collections/collection_template
-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Andrew Klychkov <[email protected]> Co-authored-by: Douglas J Hunley <[email protected]>
- Loading branch information
1 parent
ecae1de
commit 248ca0e
Showing
24 changed files
with
140 additions
and
109 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -52,20 +52,6 @@ | |
- Drop schema with CASCADE to remove child objects. | ||
type: bool | ||
default: false | ||
ssl_mode: | ||
description: | ||
- Determines whether or with what priority a secure SSL TCP/IP connection will be negotiated with the server. | ||
- See U(https://www.postgresql.org/docs/current/static/libpq-ssl.html) for more information on the modes. | ||
- Default of C(prefer) matches libpq default. | ||
type: str | ||
default: prefer | ||
choices: [ allow, disable, prefer, require, verify-ca, verify-full ] | ||
ca_cert: | ||
description: | ||
- Specifies the name of a file containing SSL certificate authority (CA) certificate(s). | ||
- If the file exists, the server's certificate will be verified to be signed by one of these authorities. | ||
type: str | ||
aliases: [ ssl_rootcert ] | ||
trust_input: | ||
description: | ||
- If C(false), check whether values of parameters I(schema), I(owner), I(session_role) are potentially dangerous. | ||
|
@@ -86,13 +72,17 @@ | |
- name: DROP SCHEMA reference | ||
description: Complete reference of the DROP SCHEMA command documentation. | ||
link: https://www.postgresql.org/docs/current/sql-dropschema.html | ||
attributes: | ||
check_mode: | ||
support: full | ||
author: | ||
- Flavien Chantelot (@Dorn-) <[email protected]> | ||
- Thomas O'Donnell (@andytom) | ||
extends_documentation_fragment: | ||
- community.postgresql.postgres | ||
notes: | ||
- Supports C(check_mode). | ||
''' | ||
|
||
EXAMPLES = r''' | ||
|
Oops, something went wrong.