You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- ---
-
- - name: private key
- command: openssl genrsa
- -out "{{certificate_private_key_file}}"
- {{ certificate_private_key_password is defined | ternary('-aes256 -passout env:PRIVATE_KEY_PASSWORD','') }}
- {{ certificate_private_key_size }}
- args:
- creates: "{{ certificate_private_key_file }}"
- environment:
- PRIVATE_KEY_PASSWORD: "{{ certificate_private_key_password | default('') }}"
- notify: certificate changed
|