win_chocolatey: Fix up validate_certs default value (#53614)

pull/53615/head
Jordan Borean 6 years ago committed by GitHub
parent 830a11dd38
commit acf3e73250
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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

Loading…
Cancel
Save