Skip to content

Commit f1c0ae9

Browse files
authored
Merge pull request #127 from Evilazaro:feature/DevCenterCatalog
Dev Center Catalogs
2 parents 22c62d3 + f2d76bd commit f1c0ae9

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

src/deploy/bicep/devBox/devCenter/deployDevCenter.bicep

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,26 @@ module devCenterEnvironments 'configureDevCenterEnvironments.bicep' = {
6666
]
6767
}
6868

69+
@description('Dev Center Catalog Info')
70+
var catalogInfo = {
71+
name: 'Contoso-Catalog'
72+
displayName: 'Contoso Catalog'
73+
uri: 'https://github.com/Evilazaro/DevExp-MicrosoftDevBox'
74+
path: '/customizations/tasks'
75+
}
76+
77+
@description('Dev Center Catalog')
78+
module configureDevCenterCatalog 'configureDevCenterCatalogs.bicep' = {
79+
name: 'devCenterCatalog'
80+
params: {
81+
devCenterName: name
82+
catalogInfo: catalogInfo
83+
}
84+
dependsOn: [
85+
deployDevCenter
86+
]
87+
}
88+
6989
@description('Dev Center Network Connection')
7090
module configureDevCenterNetworkConnection 'configureDevCenterNetworkConnection.bicep' = [
7191
for project in projects: {

0 commit comments

Comments
 (0)