From 4b55ecc82590cf72e4c17e2b790f8e73afbb62ee Mon Sep 17 00:00:00 2001 From: Jordan Borean Date: Wed, 18 Apr 2018 14:31:09 +1000 Subject: [PATCH] Update win_certificate_store.py (#38860) (#38927) * Update win_certificate_store.py Improvements to describe the different destination stores. +label: docsite_pr * Update win_certificate_store.py Whole line needs to be quoted -- lingfish YAML fail. (cherry picked from commit d684c51815bc4ebaf0666883e55d1166d1d89527) --- lib/ansible/modules/windows/win_certificate_store.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/lib/ansible/modules/windows/win_certificate_store.py b/lib/ansible/modules/windows/win_certificate_store.py index d713723d1d8..6be76075ddd 100644 --- a/lib/ansible/modules/windows/win_certificate_store.py +++ b/lib/ansible/modules/windows/win_certificate_store.py @@ -55,6 +55,14 @@ options: description: - The store name to use when importing a certificate or searching for a certificate. + - "C(AddressBook): The X.509 certificate store for other users" + - "C(AuthRoot): The X.509 certificate store for third-party certificate authorities (CAs)" + - "C(CertificateAuthority): The X.509 certificate store for intermediate certificate authorities (CAs)" + - "C(Disallowed): The X.509 certificate store for revoked certificates" + - "C(My): The X.509 certificate store for personal certificates" + - "C(Root): The X.509 certificate store for trusted root certificate authorities (CAs)" + - "C(TrustedPeople): The X.509 certificate store for directly trusted people and resources" + - "C(TrustedPublisher): The X.509 certificate store for directly trusted publishers" default: My choices: - AddressBook