Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions modules/Microsoft.Sql/managedInstances/deploy.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,15 @@ param encryptionProtectorObj object = {}
@description('Optional. The administrator configuration.')
param administratorsObj object = {}

@allowed([
'None'
'1.0'
'1.1'
'1.2'
])
@description('Optional. Minimal TLS version allowed.')
param minimalTlsVersion string = '1.2'

@description('Optional. The storage account type used to store backups for this database.')
@allowed([
'Geo'
Expand Down Expand Up @@ -245,6 +254,7 @@ resource managedInstance 'Microsoft.Sql/managedInstances@2022-02-01-preview' = {
servicePrincipal: {
type: servicePrincipal
}
minimalTlsVersion: minimalTlsVersion
}
}

Expand Down
1 change: 1 addition & 0 deletions modules/Microsoft.Sql/managedInstances/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ SQL MI allows for Azure AD Authentication via an [Azure AD Admin](https://docs.m
| `location` | string | `[resourceGroup().location]` | | Location for all resources. |
| `lock` | string | `''` | `['', CanNotDelete, ReadOnly]` | Specify the type of lock. |
| `managedInstanceCreateMode` | string | `'Default'` | `[Default, PointInTimeRestore]` | Specifies the mode of database creation. Default: Regular instance creation. Restore: Creates an instance by restoring a set of backups to specific point in time. RestorePointInTime and SourceManagedInstanceId must be specified. |
| `minimalTlsVersion` | string | `'1.2'` | `[1.0, 1.1, 1.2, None]` | Minimal TLS version allowed. |
| `proxyOverride` | string | `'Proxy'` | `[Default, Proxy, Redirect]` | Connection type used for connecting to the instance. |
| `publicDataEndpointEnabled` | bool | `False` | | Whether or not the public data endpoint is enabled. |
| `requestedBackupStorageRedundancy` | string | `'Geo'` | `[Geo, GeoZone, Local, Zone]` | The storage account type used to store backups for this database. |
Expand Down