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 sandboxGroups 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.App/sandboxGroups resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.App/sandboxGroups@2026-07-01' = {
location: 'string'
name: 'string'
properties: {
environmentId: 'string'
}
tags: {
{customized property}: 'string'
}
}
Property Values
Microsoft.App/sandboxGroups
| Name | Description | Value |
|---|---|---|
| location | The geo-location where the resource lives | string (required) |
| name | The resource name | string Constraints: Pattern = ^(?![.-])[A-Za-z0-9-]{1,32}$ (required) |
| properties | The resource-specific properties for this resource. | SandboxGroupProperties |
| tags | Resource tags | Dictionary of tag names and values. See Tags in templates |
SandboxGroupProperties
| Name | Description | Value |
|---|---|---|
| environmentId | The resource ID of the Azure Container Apps environment to link to the sandbox group. A sandbox group can be linked after creation, but the link cannot then be changed or removed. For subsequent create-or-update (PUT) requests, specify the same environment ID; omitting or changing it returns 409 Conflict. Omitting it from an update (PATCH) request leaves the existing link unchanged. | string |
TrackedResourceTags
| Name | Description | Value |
|---|
ARM template resource definition
The sandboxGroups 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.
Usage Examples
Resource format
To create a Microsoft.App/sandboxGroups resource, add the following JSON to your template.
{
"type": "Microsoft.App/sandboxGroups",
"apiVersion": "2026-07-01",
"name": "string",
"location": "string",
"properties": {
"environmentId": "string"
},
"tags": {
"{customized property}": "string"
}
}
Property Values
Microsoft.App/sandboxGroups
| Name | Description | Value |
|---|---|---|
| apiVersion | The api version | '2026-07-01' |
| location | The geo-location where the resource lives | string (required) |
| name | The resource name | string Constraints: Pattern = ^(?![.-])[A-Za-z0-9-]{1,32}$ (required) |
| properties | The resource-specific properties for this resource. | SandboxGroupProperties |
| tags | Resource tags | Dictionary of tag names and values. See Tags in templates |
| type | The resource type | 'Microsoft.App/sandboxGroups' |
SandboxGroupProperties
| Name | Description | Value |
|---|---|---|
| environmentId | The resource ID of the Azure Container Apps environment to link to the sandbox group. A sandbox group can be linked after creation, but the link cannot then be changed or removed. For subsequent create-or-update (PUT) requests, specify the same environment ID; omitting or changing it returns 409 Conflict. Omitting it from an update (PATCH) request leaves the existing link unchanged. | string |
TrackedResourceTags
| Name | Description | Value |
|---|
Terraform (AzAPI provider) resource definition
The sandboxGroups 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.App/sandboxGroups resource, add the following Terraform to your template.
resource "azapi_resource" "symbolicname" {
type = "Microsoft.App/sandboxGroups@2026-07-01"
name = "string"
parent_id = "string"
location = "string"
tags = {
{customized property} = "string"
}
body = {
properties = {
environmentId = "string"
}
}
}
Property Values
Microsoft.App/sandboxGroups
| Name | Description | Value |
|---|---|---|
| location | The geo-location where the resource lives | string (required) |
| name | The resource name | string Constraints: Pattern = ^(?![.-])[A-Za-z0-9-]{1,32}$ (required) |
| properties | The resource-specific properties for this resource. | SandboxGroupProperties |
| tags | Resource tags | Dictionary of tag names and values. |
| type | The resource type | "Microsoft.App/sandboxGroups@2026-07-01" |
SandboxGroupProperties
| Name | Description | Value |
|---|---|---|
| environmentId | The resource ID of the Azure Container Apps environment to link to the sandbox group. A sandbox group can be linked after creation, but the link cannot then be changed or removed. For subsequent create-or-update (PUT) requests, specify the same environment ID; omitting or changing it returns 409 Conflict. Omitting it from an update (PATCH) request leaves the existing link unchanged. | string |
TrackedResourceTags
| Name | Description | Value |
|---|