Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Lock easyrsa to pull in fix #1

Merged
merged 2 commits into from
Dec 19, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions playbooks/roles/openvpn/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ openvpn_auth_digest: "SHA256"
# Configuration here just uses PFS ciphers leveraging AES256 and at least SHA256
openvpn_tls_cipher: "TLS-DHE-DSS-WITH-AES-256-GCM-SHA384:TLS-DHE-RSA-WITH-AES-256-GCM-SHA384:TLS-DHE-RSA-WITH-AES-256-CBC-SHA256:TLS-DHE-DSS-WITH-AES-256-CBC-SHA256"

## lock easyrsa git checkout to pull in openssl fix
## https://github.com/OpenVPN/easy-rsa/issues/132
openvpn_easyrsa_version: a138c0d83b0ff1feed385c5d2d7a1c25422fe04d

openvpn_instances:
- {
proto: udp,
Expand Down
2 changes: 1 addition & 1 deletion playbooks/roles/openvpn/tasks/pki.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
repo: https://github.com/OpenVPN/easy-rsa.git
accept_hostkey: True
remote: github
version: master
version: "{{ openvpn_easyrsa_version }}"
dest: "{{ openvpn_path }}/easyrsa"

- name: OpenVPN | PKI | Make local destination folder
Expand Down