Skip to content

Commit

Permalink
Merge pull request #21 from Venafi/release-fix
Browse files Browse the repository at this point in the history
set default for key size
  • Loading branch information
arykalin authored Nov 18, 2019
2 parents c2dee68 + 8d46bd7 commit 305400d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tasks/local-certificate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +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 }}"
privatekey_size: "{{ certificate_privatekey_size if certificate_privatekey_size is defined else 4096 }}"
common_name: "{{ certificate_common_name }}"
alt_name: "{{ certificate_alt_name | default([]) }}"
before_expired_hours: "{{ certificate_before_expired_hours if certificate_before_expired_hours is defined else 72 }}"
Expand Down
2 changes: 1 addition & 1 deletion tasks/remote-certificate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +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 }}"
privatekey_size: "{{ certificate_privatekey_size if certificate_privatekey_size is defined else 4096 }}"
common_name: "{{ certificate_common_name }}"
alt_name: "{{ certificate_alt_name | default([]) }}"
before_expired_hours: "{{ certificate_before_expired_hours if certificate_before_expired_hours is defined else None }}"
Expand Down

0 comments on commit 305400d

Please sign in to comment.