File tree Expand file tree Collapse file tree 2 files changed +1
-21
lines changed
Expand file tree Collapse file tree 2 files changed +1
-21
lines changed Original file line number Diff line number Diff line change 11param location string
22param environmentAbbreviation string
33param solutionAbbreviation string
4- param sqlAdministratorsGroupId string
5- param sqlAdministratorsGroupName string
64
75param tenantId string
86
9- var sqlServerName = '${solutionAbbreviation }-data-${environmentAbbreviation }-hr'
10- module sqlForHRData '../Infrastructure/adf/sql/template.bicep' = {
11- name : 'sqlForHRDataTemplate'
12- params : {
13- location : location
14- environmentAbbreviation : environmentAbbreviation
15- solutionAbbreviation : solutionAbbreviation
16- sqlAdministratorsGroupId : sqlAdministratorsGroupId
17- sqlAdministratorsGroupName : sqlAdministratorsGroupName
18- tenantId : tenantId
19- sqlServerName : sqlServerName
20- }
21- }
22-
7+ var sqlServerName = '${solutionAbbreviation }-data-${environmentAbbreviation }'
238module adfForHRData '../Infrastructure/adf/pipeline/template.bicep' = {
249 name : 'adfForHRDataTemplate'
2510 params : {
@@ -29,7 +14,4 @@ module adfForHRData '../Infrastructure/adf/pipeline/template.bicep' = {
2914 tenantId : tenantId
3015 sqlServerName : sqlServerName
3116 }
32- dependsOn : [
33- sqlForHRData
34- ]
3517}
Original file line number Diff line number Diff line change @@ -144,8 +144,6 @@ module adfHRResources 'adfHRResources.bicep' = if (!skipADFDeployment) {
144144 environmentAbbreviation : environmentAbbreviation
145145 solutionAbbreviation : solutionAbbreviation
146146 tenantId : tenantId
147- sqlAdministratorsGroupId : sqlAdministratorsGroupId
148- sqlAdministratorsGroupName : sqlAdministratorsGroupName
149147 }
150148 dependsOn : [
151149 computeResources
You can’t perform that action at this time.
0 commit comments