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 interconnectGroups 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.Network/interconnectGroups resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.Network/interconnectGroups@2025-07-01' = {
location: 'string'
name: 'string'
properties: {
scope: 'string'
subgroupProfile: {
scope: 'string'
size: int
vmSize: 'string'
}
}
tags: {
{customized property}: 'string'
}
}
Property Values
Microsoft.Network/interconnectGroups
| Name | Description | Value |
|---|---|---|
| location | Resource location. | string |
| name | The resource name | string Constraints: Pattern = ^[^_\W][\w-._]{0,79}(?<![-.])$ (required) |
| properties | Properties of the interconnect group. | InterconnectGroupPropertiesFormat |
| tags | Resource tags | Dictionary of tag names and values. See Tags in templates |
CommonResourceTags
| Name | Description | Value |
|---|
InterconnectGroupPropertiesFormat
| Name | Description | Value |
|---|---|---|
| scope | Scope of interconnect group resource. | 'InfiniBand' 'None' |
| subgroupProfile | The subgroup profile of the interconnect group resource. | SubgroupProfile (required) |
SubgroupProfile
| Name | Description | Value |
|---|---|---|
| scope | Scope of the subgroup profile. | 'None' 'VerticalConnect' |
| size | Size of the subgroup profile. | int Constraints: Min value = 0 |
| vmSize | VM size of the subgroup profile. | string (required) |
ARM template resource definition
The interconnectGroups 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.Network/interconnectGroups resource, add the following JSON to your template.
{
"type": "Microsoft.Network/interconnectGroups",
"apiVersion": "2025-07-01",
"name": "string",
"location": "string",
"properties": {
"scope": "string",
"subgroupProfile": {
"scope": "string",
"size": "int",
"vmSize": "string"
}
},
"tags": {
"{customized property}": "string"
}
}
Property Values
Microsoft.Network/interconnectGroups
| Name | Description | Value |
|---|---|---|
| apiVersion | The api version | '2025-07-01' |
| location | Resource location. | string |
| name | The resource name | string Constraints: Pattern = ^[^_\W][\w-._]{0,79}(?<![-.])$ (required) |
| properties | Properties of the interconnect group. | InterconnectGroupPropertiesFormat |
| tags | Resource tags | Dictionary of tag names and values. See Tags in templates |
| type | The resource type | 'Microsoft.Network/interconnectGroups' |
CommonResourceTags
| Name | Description | Value |
|---|
InterconnectGroupPropertiesFormat
| Name | Description | Value |
|---|---|---|
| scope | Scope of interconnect group resource. | 'InfiniBand' 'None' |
| subgroupProfile | The subgroup profile of the interconnect group resource. | SubgroupProfile (required) |
SubgroupProfile
| Name | Description | Value |
|---|---|---|
| scope | Scope of the subgroup profile. | 'None' 'VerticalConnect' |
| size | Size of the subgroup profile. | int Constraints: Min value = 0 |
| vmSize | VM size of the subgroup profile. | string (required) |
Usage Examples
Terraform (AzAPI provider) resource definition
The interconnectGroups 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.Network/interconnectGroups resource, add the following Terraform to your template.
resource "azapi_resource" "symbolicname" {
type = "Microsoft.Network/interconnectGroups@2025-07-01"
name = "string"
parent_id = "string"
location = "string"
tags = {
{customized property} = "string"
}
body = {
properties = {
scope = "string"
subgroupProfile = {
scope = "string"
size = int
vmSize = "string"
}
}
}
}
Property Values
Microsoft.Network/interconnectGroups
| Name | Description | Value |
|---|---|---|
| location | Resource location. | string |
| name | The resource name | string Constraints: Pattern = ^[^_\W][\w-._]{0,79}(?<![-.])$ (required) |
| properties | Properties of the interconnect group. | InterconnectGroupPropertiesFormat |
| tags | Resource tags | Dictionary of tag names and values. |
| type | The resource type | "Microsoft.Network/interconnectGroups@2025-07-01" |
CommonResourceTags
| Name | Description | Value |
|---|
InterconnectGroupPropertiesFormat
| Name | Description | Value |
|---|---|---|
| scope | Scope of interconnect group resource. | 'InfiniBand' 'None' |
| subgroupProfile | The subgroup profile of the interconnect group resource. | SubgroupProfile (required) |
SubgroupProfile
| Name | Description | Value |
|---|---|---|
| scope | Scope of the subgroup profile. | 'None' 'VerticalConnect' |
| size | Size of the subgroup profile. | int Constraints: Min value = 0 |
| vmSize | VM size of the subgroup profile. | string (required) |