File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed
src/deploy/bicep/devBox/devCenter Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff 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' )
7090module configureDevCenterNetworkConnection 'configureDevCenterNetworkConnection.bicep' = [
7191 for project in projects : {
You can’t perform that action at this time.
0 commit comments