|
1 | 1 | param sqlConnectivityType string = 'Public' |
2 | 2 | param sqlPortNumber int = 41433 |
3 | | -param sqlStorageWorkloadType string = 'DW' |
4 | | -param sqlStorageDisksConfigurationType string = 'ADD' |
| 3 | +param sqlStorageWorkloadType string = 'General' |
| 4 | +param sqlStorageDisksConfigurationType string = 'NEW' |
| 5 | +param sqlDataSettingsDefaultFilePath string = 'F:\\SQLData' |
| 6 | +param sqlDataSettingsLUNs array = array(1) |
| 7 | +param sqlLogSettingsDefaultFilePath string = 'G:\\SQLData' |
| 8 | +param sqlLogSettingsLUNs array = array(1) |
| 9 | +param sqlTempDbSettingsDefaultFilePath string = 'H:\\SQLData' |
5 | 10 | param sqlAutopatchingDayOfWeek string = 'Sunday' |
6 | 11 | param sqlAutopatchingStartHour int = 2 |
7 | 12 | param sqlAutopatchingWindowDuration int = 60 |
@@ -29,6 +34,17 @@ resource newVMName_resource 'Microsoft.SqlVirtualMachine/SqlVirtualMachines@2017 |
29 | 34 | } |
30 | 35 | storageConfigurationSettings: { |
31 | 36 | diskConfigurationType: sqlStorageDisksConfigurationType |
| 37 | + sqlDataSettings : { |
| 38 | + luns: sqlDataSettingsLUNs |
| 39 | + defaultFilePath: sqlDataSettingsDefaultFilePath |
| 40 | + } |
| 41 | + sqlLogSettings: { |
| 42 | + luns: sqlLogSettingsLUNs |
| 43 | + defaultFilePath: sqlLogSettingsDefaultFilePath |
| 44 | + } |
| 45 | + sqlTempDbSettings: { |
| 46 | + defaultFilePath: sqlTempDbSettingsDefaultFilePath |
| 47 | + } |
32 | 48 | storageWorkloadType: sqlStorageWorkloadType |
33 | 49 | } |
34 | 50 | serverConfigurationsManagementSettings: { |
|
0 commit comments