Skip to content

Commit

Permalink
adding privatekey_size: "{{ certificate_privatekey_size if certificat…
Browse files Browse the repository at this point in the history
…e_privatekey_size is defined else None }}" option
  • Loading branch information
arykalin committed Nov 18, 2019
1 parent 969cacf commit a9ea2ab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions tasks/local-certificate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
cert_path: "{{ certificate_cert_path }}"
chain_path: "{{ certificate_chain_path if certificate_chain_path is defined else None }}"
privatekey_path: "{{ certificate_privatekey_path if certificate_privatekey_path is defined else None }}"
privatekey_size: "{{ certificate_privatekey_size if certificate_privatekey_size is defined else None }}"
common_name: "{{ certificate_common_name }}"
alt_name: "{{ certificate_alt_name if certificate_alt_name is defined else None }}"
before_expired_hours: "{{ certificate_before_expired_hours if certificate_before_expired_hours is defined else 72 }}"
Expand Down
1 change: 1 addition & 0 deletions tasks/remote-certificate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
cert_path: "{{ certificate_cert_path }}"
chain_path: "{{ certificate_chain_path if certificate_chain_path is defined else None }}"
privatekey_path: "{{ certificate_privatekey_path if certificate_privatekey_path is defined else None }}"
privatekey_size: "{{ certificate_privatekey_size if certificate_privatekey_size is defined else None }}"
common_name: "{{ certificate_common_name }}"
alt_name: "{{ certificate_alt_name if certificate_alt_name is defined else None }}"
before_expired_hours: "{{ certificate_before_expired_hours if certificate_before_expired_hours is defined else None }}"
Expand Down

0 comments on commit a9ea2ab

Please sign in to comment.