diff --git a/plugins/modules/acme_certificate.py b/plugins/modules/acme_certificate.py index c5103ed3..e4a8288e 100644 --- a/plugins/modules/acme_certificate.py +++ b/plugins/modules/acme_certificate.py @@ -420,7 +420,6 @@ challenge_data: returned: changed and challenge is C(tls-alpn-01) type: str sample: DNS:example.com - version_added: "2.8" resource_value: description: - The value the resource has to produce for the validation. @@ -439,14 +438,12 @@ challenge_data: returned: changed and challenge is C(dns-01) type: str sample: _acme-challenge.example.com - version_added: "2.5" challenge_data_dns: description: - List of TXT values per DNS record, in case challenge is C(dns-01). - Since Ansible 2.8.5, only challenges which are not yet valid are returned. returned: changed type: dict - version_added: "2.5" authorizations: description: - ACME authorization data. @@ -458,17 +455,14 @@ order_uri: description: ACME order URI. returned: changed type: str - version_added: "2.5" finalization_uri: description: ACME finalization URI. returned: changed type: str - version_added: "2.5" account_uri: description: ACME account URI. returned: changed type: str - version_added: "2.5" all_chains: description: - When I(retrieve_all_alternates) is set to C(yes), the module will query the ACME server diff --git a/plugins/modules/acme_challenge_cert_helper.py b/plugins/modules/acme_challenge_cert_helper.py index 2a89f86c..23633cc5 100644 --- a/plugins/modules/acme_challenge_cert_helper.py +++ b/plugins/modules/acme_challenge_cert_helper.py @@ -113,14 +113,12 @@ identifier_type: or C(ip)." returned: always type: str - version_added: "2.8" identifier: description: - "The identifier for the actual resource. Will be a domain name if the type is C(dns), or an IP address if the type is C(ip)." returned: always type: str - version_added: "2.8" challenge_certificate: description: - "The challenge certificate in PEM format." diff --git a/plugins/modules/openssl_csr.py b/plugins/modules/openssl_csr.py index b5e7ba8c..cbad60ec 100644 --- a/plugins/modules/openssl_csr.py +++ b/plugins/modules/openssl_csr.py @@ -413,7 +413,6 @@ csr: description: The (current or generated) CSR's content. returned: if I(state) is C(present) and I(return_content) is C(yes) type: str - version_added: "2.10" ''' import abc diff --git a/plugins/modules/openssl_csr_info.py b/plugins/modules/openssl_csr_info.py index 29094d56..97fca7a4 100644 --- a/plugins/modules/openssl_csr_info.py +++ b/plugins/modules/openssl_csr_info.py @@ -156,7 +156,6 @@ subject_ordered: type: list elements: list sample: '[["commonName", "www.example.com"], ["emailAddress": "test@example.com"]]' - version_added: "2.9" public_key: description: CSR's public key in PEM format returned: success @@ -178,7 +177,6 @@ subject_key_identifier: returned: success and if the pyOpenSSL backend is I(not) used type: str sample: '00:11:22:33:44:55:66:77:88:99:aa:bb:cc:dd:ee:ff:00:11:22:33' - version_added: "2.9" authority_key_identifier: description: - The CSR's authority key identifier. @@ -187,7 +185,6 @@ authority_key_identifier: returned: success and if the pyOpenSSL backend is I(not) used type: str sample: '00:11:22:33:44:55:66:77:88:99:aa:bb:cc:dd:ee:ff:00:11:22:33' - version_added: "2.9" authority_cert_issuer: description: - The CSR's authority cert issuer as a list of general names. @@ -196,7 +193,6 @@ authority_cert_issuer: type: list elements: str sample: "[DNS:www.ansible.com, IP:1.2.3.4]" - version_added: "2.9" authority_cert_serial_number: description: - The CSR's authority cert serial number. @@ -204,7 +200,6 @@ authority_cert_serial_number: returned: success and if the pyOpenSSL backend is I(not) used type: int sample: '12345' - version_added: "2.9" ''' diff --git a/plugins/modules/openssl_dhparam.py b/plugins/modules/openssl_dhparam.py index 00ddf31f..52d66a9d 100644 --- a/plugins/modules/openssl_dhparam.py +++ b/plugins/modules/openssl_dhparam.py @@ -118,7 +118,6 @@ dhparams: description: The (current or generated) DH params' content. returned: if I(state) is C(present) and I(return_content) is C(yes) type: str - version_added: "2.10" ''' import abc diff --git a/plugins/modules/openssl_pkcs12.py b/plugins/modules/openssl_pkcs12.py index 6bd055e8..6a6bc358 100644 --- a/plugins/modules/openssl_pkcs12.py +++ b/plugins/modules/openssl_pkcs12.py @@ -176,7 +176,6 @@ pkcs12: description: The (current or generated) PKCS#12's content Base64 encoded. returned: if I(state) is C(present) and I(return_content) is C(yes) type: str - version_added: "2.10" ''' import base64 diff --git a/plugins/modules/openssl_privatekey.py b/plugins/modules/openssl_privatekey.py index 35a56964..45b92a1d 100644 --- a/plugins/modules/openssl_privatekey.py +++ b/plugins/modules/openssl_privatekey.py @@ -269,7 +269,6 @@ privatekey: - Will be Base64-encoded if the key is in raw format. returned: if I(state) is C(present) and I(return_content) is C(yes) type: str - version_added: "2.10" ''' import abc diff --git a/plugins/modules/openssl_publickey.py b/plugins/modules/openssl_publickey.py index 10e89742..30a0c83e 100644 --- a/plugins/modules/openssl_publickey.py +++ b/plugins/modules/openssl_publickey.py @@ -174,7 +174,6 @@ publickey: description: The (current or generated) public key's content. returned: if I(state) is C(present) and I(return_content) is C(yes) type: str - version_added: "2.10" ''' import os diff --git a/plugins/modules/x509_certificate.py b/plugins/modules/x509_certificate.py index 5848cd68..d112dc63 100644 --- a/plugins/modules/x509_certificate.py +++ b/plugins/modules/x509_certificate.py @@ -844,7 +844,6 @@ certificate: description: The (current or generated) certificate's content. returned: if I(state) is C(present) and I(return_content) is C(yes) type: str - version_added: "2.10" ''' diff --git a/plugins/modules/x509_certificate_info.py b/plugins/modules/x509_certificate_info.py index fd0cf39c..f1aec54e 100644 --- a/plugins/modules/x509_certificate_info.py +++ b/plugins/modules/x509_certificate_info.py @@ -197,7 +197,6 @@ issuer_ordered: type: list elements: list sample: '[["organizationName", "Ansible"], ["commonName": "ca.example.com"]]' - version_added: "2.9" subject: description: - The certificate's subject as a dictionary. @@ -211,7 +210,6 @@ subject_ordered: type: list elements: list sample: '[["commonName", "www.example.com"], ["emailAddress": "test@example.com"]]' - version_added: "2.9" not_after: description: C(notAfter) date as ASN.1 TIME returned: success @@ -264,7 +262,6 @@ subject_key_identifier: returned: success and if the pyOpenSSL backend is I(not) used type: str sample: '00:11:22:33:44:55:66:77:88:99:aa:bb:cc:dd:ee:ff:00:11:22:33' - version_added: "2.9" authority_key_identifier: description: - The certificate's authority key identifier. @@ -273,7 +270,6 @@ authority_key_identifier: returned: success and if the pyOpenSSL backend is I(not) used type: str sample: '00:11:22:33:44:55:66:77:88:99:aa:bb:cc:dd:ee:ff:00:11:22:33' - version_added: "2.9" authority_cert_issuer: description: - The certificate's authority cert issuer as a list of general names. @@ -282,7 +278,6 @@ authority_cert_issuer: type: list elements: str sample: "[DNS:www.ansible.com, IP:1.2.3.4]" - version_added: "2.9" authority_cert_serial_number: description: - The certificate's authority cert serial number. @@ -290,13 +285,11 @@ authority_cert_serial_number: returned: success and if the pyOpenSSL backend is I(not) used type: int sample: '12345' - version_added: "2.9" ocsp_uri: description: The OCSP responder URI, if included in the certificate. Will be C(none) if no OCSP responder URI is included. returned: success type: str - version_added: "2.9" '''