-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #42 from AlexanderSehr/users/alsehr/managedPoolAVM
feat: Implemented published 'Managed DevOps Pool' AVM module
- Loading branch information
Showing
7 changed files
with
119 additions
and
322 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
@description('Required. ') | ||
param location string | ||
|
||
@description('Required. The name of the Dev Center to use for the DevOps Infrastructure Pool. Must be lower case and may contain hyphens.') | ||
@minLength(3) | ||
@maxLength(26) | ||
param devCenterName string | ||
|
||
@description('Required. The name of the Dev Center project to use for the DevOps Infrastructure Pool.') | ||
@minLength(3) | ||
@maxLength(63) | ||
param devCenterProjectName string | ||
|
||
resource devCenter 'Microsoft.DevCenter/devcenters@2024-02-01' = { | ||
name: devCenterName | ||
location: location | ||
} | ||
|
||
resource devCenterProject 'Microsoft.DevCenter/projects@2024-02-01' = { | ||
name: devCenterProjectName | ||
location: location | ||
properties: { | ||
devCenterId: devCenter.id | ||
} | ||
} | ||
|
||
@description('The resource ID of the Dev Center project.') | ||
output devCenterProjectResourceId string = devCenterProject.id |
290 changes: 0 additions & 290 deletions
290
constructs/managedDevOpsPool/templates/nestedPool.bicep
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.