From 79cebbf93383c33df2115dd94d5155219eb6ba04 Mon Sep 17 00:00:00 2001 From: Nathaniel Case Date: Mon, 17 Sep 2018 11:25:43 -0400 Subject: [PATCH] These won't get upgraded to bool if ansible doesn't know they are Adapted from #45736, the other change came from a commit that will not be backported --- lib/ansible/plugins/connection/httpapi.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/ansible/plugins/connection/httpapi.py b/lib/ansible/plugins/connection/httpapi.py index a8718c5e877..78f10112d8d 100644 --- a/lib/ansible/plugins/connection/httpapi.py +++ b/lib/ansible/plugins/connection/httpapi.py @@ -61,12 +61,14 @@ options: - name: ansible_password - name: ansible_httpapi_pass use_ssl: + type: boolean description: - Whether to connect using SSL (HTTPS) or not (HTTP) default: False vars: - name: ansible_httpapi_use_ssl validate_certs: + type: boolean version_added: '2.7' description: - Whether to validate SSL certificates