Overview
|
|
| Name |
sqlbulksyncsettings |
| Tag |
2026.8.31.6 |
| FullName |
br:bicepacrdevwcom.azurecr.io/bicep/modules/sqlbulksyncsettings:2026.8.31.6 |
| Last updated |
2026-08-31 10:53:02:+00:00 |
| Created |
2026-08-31 10:53:02:+00:00 |
| Digest |
sha256:97321cbcd0968a4bfb4dd8ad96050b3967db8836856f1c2b26940fc0271a0c14 |
Parameters
| Name |
Type |
Required |
Description |
id |
string |
Yes |
|
area |
string |
Yes |
|
sourceSqlServer |
string |
Yes |
|
sourceSqlDatabase |
string |
Yes |
|
sourceSqlManagedIdentity |
bool |
No
true |
|
sourceSqlTenantId |
string |
No
subscription().tenantId |
|
sourceConnectionString |
string |
No
format('Server=tcp:{0},1433;Initial Catalog={1};MultipleActiveResultSets=False;Encrypt=True;TrustServerCertificate=False', sourceSqlServer, sourceSqlDatabase) |
|
targetSqlServer |
string |
Yes |
|
targetSqlDatabase |
string |
Yes |
|
targetSqlManagedIdentity |
bool |
No
true |
|
targetSqlTenantId |
string |
No
subscription().tenantId |
|
targetConnectionString |
string |
No
format('Server=tcp:{0},1433;Initial Catalog={1};MultipleActiveResultSets=False;Encrypt=True;TrustServerCertificate=False', targetSqlServer, targetSqlDatabase) |
|
batchSize |
int |
No
500 |
|
scheduleManual |
bool |
No
false |
|
scheduleCustom |
bool |
No
false |
|
scheduleNoon |
bool |
No
false |
|
scheduleMidnight |
bool |
No
false |
|
scheduleEveryFiveMinutes |
bool |
No
false |
|
scheduleEveryHour |
bool |
No
false |
|
tables |
object |
Yes |
|
targetTables |
object |
No
{ } |
|
Outputs
| Name |
Type |
Description |
settings |
object |
|
Example
@description('The target environment.')
param env string
@description('The deployment version.')
param version string = '1.0.0.0'
param id string
param area string
param sourceSqlServer string
param sourceSqlDatabase string
param targetSqlServer string
param targetSqlDatabase string
param tables object
module sqlbulksyncsettings 'br:bicepacrdevwcom.azurecr.io/bicep/modules/sqlbulksyncsettings:2026.8.31.6' = {
name: 'sqlbulksyncsettings${env}${version}'
params: {
id: id
area: area
sourceSqlServer: sourceSqlServer
sourceSqlDatabase: sourceSqlDatabase
targetSqlServer: targetSqlServer
targetSqlDatabase: targetSqlDatabase
tables: tables
}
}