Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…mployerapprenticeshipsservice into MAP-74_Transfer-redirect-to-comt-v2
  • Loading branch information
reachash committed Jun 15, 2022
2 parents afa6a33 + e714b15 commit 3a46b2e
Show file tree
Hide file tree
Showing 7 changed files with 147 additions and 225 deletions.
9 changes: 9 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ steps:
- task: ArchiveFiles@2
displayName: 'Archive SFA.DAS.Account.Api'
inputs:
includeRootFolder: false
rootFolderOrFile: '$(build.artifactstagingdirectory)/SFA.DAS.EmployerAccounts.Api'
archiveFile: '$(Build.ArtifactStagingDirectory)/publish/SFA.DAS.EmployerAccounts.Api.zip'

Expand All @@ -94,6 +95,7 @@ steps:
- task: ArchiveFiles@2
displayName: 'Archive SFA.DAS.EmployerAccounts.Web'
inputs:
includeRootFolder: false
rootFolderOrFile: '$(build.artifactstagingdirectory)/SFA.DAS.EmployerAccounts.Web'
archiveFile: '$(Build.ArtifactStagingDirectory)/publish/SFA.DAS.EmployerAccounts.Web.zip'

Expand All @@ -110,6 +112,7 @@ steps:
- task: ArchiveFiles@2
displayName: 'Archive SFA.DAS.EmployerAccounts.Host'
inputs:
includeRootFolder: false
rootFolderOrFile: '$(build.artifactstagingdirectory)/SFA.DAS.EmployerAccounts.Host'
archiveFile: '$(Build.ArtifactStagingDirectory)/publish/SFA.DAS.EmployerAccounts.Host.zip'

Expand All @@ -126,6 +129,7 @@ steps:
- task: ArchiveFiles@2
displayName: 'Archive SFA.DAS.EmployerFinance.Api'
inputs:
includeRootFolder: false
rootFolderOrFile: '$(build.artifactstagingdirectory)/SFA.DAS.EmployerFinance.Api'
archiveFile: '$(Build.ArtifactStagingDirectory)/publish/SFA.DAS.EmployerFinance.Api.zip'

Expand All @@ -142,6 +146,7 @@ steps:
- task: ArchiveFiles@2
displayName: 'Archive SFA.DAS.EmployerFinance.Web'
inputs:
includeRootFolder: false
rootFolderOrFile: '$(build.artifactstagingdirectory)/SFA.DAS.EmployerFinance.Web'
archiveFile: '$(Build.ArtifactStagingDirectory)/publish/SFA.DAS.EmployerFinance.Web.zip'

Expand All @@ -158,6 +163,7 @@ steps:
- task: ArchiveFiles@2
displayName: 'Archive SFA.DAS.EmployerFinance.Host'
inputs:
includeRootFolder: false
rootFolderOrFile: '$(build.artifactstagingdirectory)/SFA.DAS.EmployerFinance.Host'
archiveFile: '$(Build.ArtifactStagingDirectory)/publish/SFA.DAS.EmployerFinance.Host.zip'

Expand All @@ -174,6 +180,7 @@ steps:
- task: ArchiveFiles@2
displayName: 'Archive SFA.DAS.EAS.Account.Api'
inputs:
includeRootFolder: false
rootFolderOrFile: '$(build.artifactstagingdirectory)/SFA.DAS.EAS.Account.Api'
archiveFile: '$(Build.ArtifactStagingDirectory)/publish/SFA.DAS.EAS.Account.Api.zip'

Expand All @@ -190,6 +197,7 @@ steps:
- task: ArchiveFiles@2
displayName: 'Archive SFA.DAS.EAS.Web'
inputs:
includeRootFolder: false
rootFolderOrFile: '$(build.artifactstagingdirectory)/SFA.DAS.EAS.Web'
archiveFile: '$(Build.ArtifactStagingDirectory)/publish/SFA.DAS.EAS.Web.zip'

Expand All @@ -206,6 +214,7 @@ steps:
- task: ArchiveFiles@2
displayName: 'Archive SFA.DAS.EAS.Support.Web'
inputs:
includeRootFolder: false
rootFolderOrFile: '$(build.artifactstagingdirectory)/SFA.DAS.EAS.Support.Web'
archiveFile: '$(Build.ArtifactStagingDirectory)/publish/SFA.DAS.EAS.Support.Web.zip'

Expand Down
12 changes: 7 additions & 5 deletions azure/finance.template.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,11 @@
"sharedApimName": {
"type": "string"
},
"appServiceAllowedIPs": {
"type": "array",
"defaultValue": []
"backEndAccessRestrictions": {
"type": "array"
},
"frontEndAccessRestrictions": {
"type": "array"
},
"sharedSQLServerName": {
"type": "string"
Expand Down Expand Up @@ -269,7 +271,7 @@
"value": "[if(greater(length(parameters('uiCustomHostname')), 0), reference('ui-app-service-certificate', '2018-11-01').outputs.certificateThumbprint.value, '')]"
},
"ipSecurityRestrictions": {
"value": "[parameters('appServiceAllowedIPs')]"
"value": "[parameters('frontEndAccessRestrictions')]"
}
}
}
Expand Down Expand Up @@ -379,7 +381,7 @@
"value": "[if(greater(length(parameters('apiCustomHostname')), 0), reference('api-app-service-certificate', '2018-11-01').outputs.certificateThumbprint.value, '')]"
},
"ipSecurityRestrictions": {
"value": "[parameters('appServiceAllowedIPs')]"
"value": "[parameters('backEndAccessRestrictions')]"
}
}
}
Expand Down
Loading

0 comments on commit 3a46b2e

Please sign in to comment.