You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
*Install the basic SQL Server Engine from installation media mounted at 'D:\' with TCP Enabled and various directories set.
184
+
*Installs the basic SQL Server Engine from installation media mounted at 'D:\' with TCP Enabled and various directories set.
185
185
186
-
* Uses only Windowsbased authentication and installs with only the user that Puppet is executing as. Note that the 'sql_sysadmin_accounts' is only applicable during the instance installation and is not actively enforced.
186
+
* Uses only Windows-based authentication and installs with only the user that Puppet is executing as. Note that the 'sql_sysadmin_accounts' is only applicable during the instance installation and is not actively enforced.
187
187
188
-
* Creates a sqlserver::config resource which is used in later resources to connect to the newly created instance. As we only support Windows based authentication, a username and password is not required.
188
+
* Creates a `sqlserver::config` resource, which is used in later resources to connect to the newly created instance. As we support only Windows-based authentication, a username and password is not required.
189
189
190
-
*Create a local group called 'DB Administrators', and ensure that it is SQL System Administrator (sysadmin role) along with the account used to install the instance, and that Puppet uses to manage the database instance.
190
+
*Creates a local group called 'DB Administrators' and ensures that it is SQL System Administrator (sysadmin role); also creates the account that Puppet uses to install and manage the instance.
191
191
192
-
*Ensure that the advanced options for sp_configure are enabled so we can manage the Max Memory setting for the instance.
192
+
*Ensures that the advanced options for `sp_configure` are enabled, so that Puppet can manage the `max memory` setting for the instance.
193
193
194
-
* Ensure that the Max Memory (MB) configuration item is set to 2048 megabytes.
194
+
* Ensure that the `max memory` (MB) configuration item is set to 2048 megabytes.
195
195
196
196
```puppet
197
197
$sourceloc = 'D:/'
@@ -274,7 +274,7 @@ Default: 'present'.
274
274
275
275
Specifies one or more features to manage. Valid options: 'BC', 'Conn', 'SSMS', 'ADV_SSMS', 'SDK', 'IS', 'MDS', 'BOL', 'DREPLAY_CTLR', 'DREPLAY_CLT'.
276
276
277
-
The 'Tools' feature is deprecated. Instead specify 'BC', 'SSMS', 'ADV_SSMS', 'Conn', and 'SDK' explicitly.
277
+
The 'Tools' value for this setting is deprecated. Specify 'BC', 'SSMS', 'ADV_SSMS', 'Conn', and 'SDK' explicitly.
278
278
279
279
##### `install_switches`
280
280
@@ -366,7 +366,7 @@ Default: 'present'.
366
366
367
367
*Required.* Specifies one or more features to manage. The list of top-level features includes 'AS' and 'RS'. Valid options: an array containing one or more of the strings 'SQL', 'SQLEngine', 'Replication', 'FullText', 'DQ', 'AS', 'RS', 'POLYBASE', and 'ADVANCEDANALYTICS'.
368
368
369
-
The 'SQL' feature is deprecated. Instead specify 'DQ', 'FullText', 'Replication', and 'SQLEngine' explicitly.
369
+
The 'SQL' value for this setting is deprecated. Specify 'DQ', 'FullText', 'Replication', and 'SQLEngine' explicitly.
370
370
371
371
##### `install_switches`
372
372
@@ -393,15 +393,15 @@ Default: `undef`.
393
393
394
394
##### `polybase_svc_account`
395
395
396
-
*Only applicable if the POLYBASE feature for SQL Server 2016 is being installed*
396
+
**Applicable only if the POLYBASE feature for SQL Server 2016 is being installed.**
397
397
398
398
Specifies a domain or system account for the Polybase Engine service.
399
399
400
400
Valid options: a string specifying an existing username.
401
401
402
402
##### `polybase_svc_password`
403
403
404
-
*Only applicable if the POLYBASE feature for SQL Server 2016 is being installed*
404
+
**Applicable only if the POLYBASE feature for SQL Server 2016 is being installed.**
405
405
406
406
Specifies the password for the Polybase Engine service
407
407
@@ -1071,9 +1071,9 @@ Terminology differs somewhat between various database systems; please refer to t
1071
1071
1072
1072
This module is available only for Windows Server 2012 or 2012 R2, and works with Puppet Enterprise 3.7 and later.
1073
1073
1074
-
This module can only manage a single SQL Server version on a host (one and only one of SQL Server 2012, 2014 or 2016). The module is able to manage multiple SQL Server instances of the same version.
1074
+
This module can manage only a single version of SQL Server on a given host (one and only one of SQL Server 2012, 2014 or 2016). The module is able to manage multiple SQL Server instances of the same version.
1075
1075
1076
-
The SQL Server Native Client SDK (also known as SNAC_SDK) can not be managed by this module. The SQL Server installation media is able to install the SDK but is not able to uninstall the SDK. Note that the 'sqlserver_features' fact will detect the presence of the SDK.
1076
+
This module cannot manage the SQL Server Native Client SDK (also known as SNAC_SDK). The SQL Server installation media can install the SDK, but it is not able to uninstall the SDK. Note that the 'sqlserver_features' fact detects the presence of the SDK.
0 commit comments