From acf3e73250c4a1f1e0d193e5aecb748e34057c56 Mon Sep 17 00:00:00 2001 From: Jordan Borean Date: Mon, 11 Mar 2019 11:32:31 +1000 Subject: [PATCH] win_chocolatey: Fix up validate_certs default value (#53614) --- lib/ansible/modules/windows/win_chocolatey.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/windows/win_chocolatey.ps1 b/lib/ansible/modules/windows/win_chocolatey.ps1 index fd6233c493..5e7b3b6227 100644 --- a/lib/ansible/modules/windows/win_chocolatey.ps1 +++ b/lib/ansible/modules/windows/win_chocolatey.ps1 @@ -35,7 +35,7 @@ $spec = @{ source_password = @{ type = "str"; no_log = $true } state = @{ type = "str"; default = "present"; choices = "absent", "downgrade", "latest", "present", "reinstalled" } timeout = @{ type = "int"; default = 2700; aliases = "execution_timeout" } - validate_certs = @{ type = "bool"; default = $false } + validate_certs = @{ type = "bool"; default = $true } version = @{ type = "str" } } supports_check_mode = $true