we are trying to install sqlserver using the sqlserverdsc module, this takes quite a while, so we where trying to use dsc_timeout to adjust the timeout value like so:
FYI: we are using hiera a hiera lookup & create_resources
sqlserverdsc::dsc_sqlsetup:
MSSQLSERVER:
dsc_action: Install
dsc_instancename: MSSQLSERVER
dsc_sqlsysadminaccounts:
- 'BUILTIN\Administrators'
dsc_features: "SQLENGINE,REPLICATION,IS,CONN" # Note: The order matters her for config validation. It will work in any order but will report a misconfig if not in the "right" order. Unsure on what determines that order beyond looking at the puppet logs.
dsc_sourcepath: 'C:\InstallMedia\SQL 2019 Standard x64'
dsc_timeout: 7200
Describe the Bug
we are trying to install sqlserver using the sqlserverdsc module, this takes quite a while, so we where trying to use dsc_timeout to adjust the timeout value like so:
FYI: we are using hiera a hiera lookup & create_resources
class doing the lookup
example hiera_data
the error
Expected Behavior
no error should be thrown when using dsc_timeout
Steps to Reproduce
check description
Environment