From 4d42ea32dc2aa6de3d4f2b71414c44c23f930ad4 Mon Sep 17 00:00:00 2001 From: Matt Clay Date: Fri, 29 Mar 2019 09:14:38 -0700 Subject: [PATCH] Add ca_cert to postgresql_membership docs. --- .../modules/database/postgresql/postgresql_membership.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/ansible/modules/database/postgresql/postgresql_membership.py b/lib/ansible/modules/database/postgresql/postgresql_membership.py index 806039ef6c..36d9c2eb0f 100644 --- a/lib/ansible/modules/database/postgresql/postgresql_membership.py +++ b/lib/ansible/modules/database/postgresql/postgresql_membership.py @@ -115,6 +115,12 @@ options: - If the file exists, the server's certificate will be verified to be signed by one of these authorities. type: str + 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. + aliases: [ ssl_rootcert ] notes: - The default authentication assumes that you are either logging in as or sudo'ing to the postgres account on the host.