mirror of
https://github.com/ansible-collections/community.crypto.git
synced 2026-05-07 22:03:01 +00:00
* Remove PyOpenSSL backends. * Remove EOL ansible-core's from EE builds. * Update Pythons in EEs. * Remove pyopenssl tests.
33 lines
1.0 KiB
YAML
33 lines
1.0 KiB
YAML
---
|
|
# Copyright (c) Ansible Project
|
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
- name: Create private key
|
|
community.crypto.openssl_privatekey:
|
|
path: "{{ output_path }}/pkcs12-cert.key"
|
|
type: ECC
|
|
curve: secp256r1
|
|
|
|
- name: Create CSR
|
|
community.crypto.openssl_csr:
|
|
path: "{{ output_path }}/pkcs12-cert.csr"
|
|
privatekey_path: "{{ output_path }}/pkcs12-cert.key"
|
|
|
|
- name: Create certificate
|
|
community.crypto.x509_certificate:
|
|
path: "{{ output_path }}/pkcs12-cert.pem"
|
|
csr_path: "{{ output_path }}/pkcs12-cert.csr"
|
|
privatekey_path: "{{ output_path }}/pkcs12-cert.key"
|
|
provider: selfsigned
|
|
|
|
- name: Create PKCS#12
|
|
community.crypto.openssl_pkcs12:
|
|
action: export
|
|
path: "{{ output_path }}/pkcs12-1.p12"
|
|
mode: '0644'
|
|
friendly_name: foo
|
|
privatekey_path: "{{ output_path }}/pkcs12-cert.key"
|
|
certificate_path: "{{ output_path }}/pkcs12-cert.pem"
|
|
state: present
|