summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorJason Holland <swimlappy@gmail.com>2014-12-13 21:20:33 -0600
committerJason Holland <swimlappy@gmail.com>2014-12-13 21:20:33 -0600
commiteedc51f21302f6ce3247afd91932c19aff272af6 (patch)
treed5c7c350065342b2e0f6f772dc66d9cc8c3fa9fe /examples
parent12968acd5f553d1b0b46eb2111443e223a7f2e93 (diff)
downloadansible-eedc51f21302f6ce3247afd91932c19aff272af6.tar.gz
Add support for SSL protocol version configuration option. Also fix 2 places where the SSL version was not being set properly.
Diffstat (limited to 'examples')
-rw-r--r--examples/ansible.cfg9
1 files changed, 9 insertions, 0 deletions
diff --git a/examples/ansible.cfg b/examples/ansible.cfg
index a89fa47664..0c43f0e07d 100644
--- a/examples/ansible.cfg
+++ b/examples/ansible.cfg
@@ -212,3 +212,12 @@ accelerate_daemon_timeout = 30
# is "no".
#accelerate_multi_key = yes
+[ssl]
+# SSL/TLS Protocol
+# Configure the default protocol strength of any SSL/TLS connections
+# made by Ansible. Valid values are
+# SSLv2 - 0
+# SSLv3 - 1
+# SSLv23 - 2
+# TLSv1 - 3
+ssl_protocol = 3