Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Bicep resource definition
The projects resource type can be deployed with operations that target:
- Resource groups - See resource group deployment commands
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.DevCenter/projects resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.DevCenter/projects@2022-11-11-preview' = {
location: 'string'
name: 'string'
properties: {
description: 'string'
devCenterId: 'string'
}
tags: {
{customized property}: 'string'
}
}
Property Values
Microsoft.DevCenter/projects
Name | Description | Value |
---|---|---|
location | The geo-location where the resource lives | string (required) |
name | The resource name | string (required) |
properties | Properties of a project. | ProjectProperties |
tags | Resource tags | Dictionary of tag names and values. See Tags in templates |
ProjectProperties
Name | Description | Value |
---|---|---|
description | Description of the project. | string |
devCenterId | Resource Id of an associated DevCenter | string |
TrackedResourceTags
Name | Description | Value |
---|
Usage Examples
Azure Quickstart Samples
The following Azure Quickstart templates contain Bicep samples for deploying this resource type.
Bicep File | Description |
---|---|
Configure Deployment Environments service | This template provides a way to configure Deployment Environments. |
Configure Dev Box service | This template would create all Dev Box admin resources as per Dev Box quick start guide (/azure/dev-box/quickstart-create-dev-box). You can view all resources created, or directly go to DevPortal.microsoft.com to create your first Dev Box. |
Deploy Dev Box Service | This template provides a way to configure all resouces required to create a Dev Box. |
Deploy Dev Box Service with built-in image | This template provides a way to deploy an Dev Box service with built-in image. |
ARM template resource definition
The projects resource type can be deployed with operations that target:
- Resource groups - See resource group deployment commands
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.DevCenter/projects resource, add the following JSON to your template.
{
"type": "Microsoft.DevCenter/projects",
"apiVersion": "2022-11-11-preview",
"name": "string",
"location": "string",
"properties": {
"description": "string",
"devCenterId": "string"
},
"tags": {
"{customized property}": "string"
}
}
Property Values
Microsoft.DevCenter/projects
Name | Description | Value |
---|---|---|
apiVersion | The api version | '2022-11-11-preview' |
location | The geo-location where the resource lives | string (required) |
name | The resource name | string (required) |
properties | Properties of a project. | ProjectProperties |
tags | Resource tags | Dictionary of tag names and values. See Tags in templates |
type | The resource type | 'Microsoft.DevCenter/projects' |
ProjectProperties
Name | Description | Value |
---|---|---|
description | Description of the project. | string |
devCenterId | Resource Id of an associated DevCenter | string |
TrackedResourceTags
Name | Description | Value |
---|
Usage Examples
Azure Quickstart Templates
The following Azure Quickstart templates deploy this resource type.
Template | Description |
---|---|
Configure Deployment Environments service |
This template provides a way to configure Deployment Environments. |
Configure Dev Box service |
This template would create all Dev Box admin resources as per Dev Box quick start guide (/azure/dev-box/quickstart-create-dev-box). You can view all resources created, or directly go to DevPortal.microsoft.com to create your first Dev Box. |
Deploy Dev Box Service |
This template provides a way to configure all resouces required to create a Dev Box. |
Deploy Dev Box Service with built-in image |
This template provides a way to deploy an Dev Box service with built-in image. |
Terraform (AzAPI provider) resource definition
The projects resource type can be deployed with operations that target:
- Resource groups
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.DevCenter/projects resource, add the following Terraform to your template.
resource "azapi_resource" "symbolicname" {
type = "Microsoft.DevCenter/projects@2022-11-11-preview"
name = "string"
parent_id = "string"
location = "string"
tags = {
{customized property} = "string"
}
body = {
properties = {
description = "string"
devCenterId = "string"
}
}
}
Property Values
Microsoft.DevCenter/projects
Name | Description | Value |
---|---|---|
location | The geo-location where the resource lives | string (required) |
name | The resource name | string (required) |
properties | Properties of a project. | ProjectProperties |
tags | Resource tags | Dictionary of tag names and values. |
type | The resource type | "Microsoft.DevCenter/projects@2022-11-11-preview" |
ProjectProperties
Name | Description | Value |
---|---|---|
description | Description of the project. | string |
devCenterId | Resource Id of an associated DevCenter | string |
TrackedResourceTags
Name | Description | Value |
---|