mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-08-03 04:34:24 -07:00
win_chocolatey: Fix up validate_certs default value (#53614)
This commit is contained in:
parent
830a11dd38
commit
acf3e73250
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ $spec = @{
|
||||||
source_password = @{ type = "str"; no_log = $true }
|
source_password = @{ type = "str"; no_log = $true }
|
||||||
state = @{ type = "str"; default = "present"; choices = "absent", "downgrade", "latest", "present", "reinstalled" }
|
state = @{ type = "str"; default = "present"; choices = "absent", "downgrade", "latest", "present", "reinstalled" }
|
||||||
timeout = @{ type = "int"; default = 2700; aliases = "execution_timeout" }
|
timeout = @{ type = "int"; default = 2700; aliases = "execution_timeout" }
|
||||||
validate_certs = @{ type = "bool"; default = $false }
|
validate_certs = @{ type = "bool"; default = $true }
|
||||||
version = @{ type = "str" }
|
version = @{ type = "str" }
|
||||||
}
|
}
|
||||||
supports_check_mode = $true
|
supports_check_mode = $true
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue