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 skus resource type can be deployed with operations that target:
- Tenant - See tenant deployment commands* Management groups - See management group deployment commands* Subscription - See subscription deployment commands* 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.HybridContainerService/skus resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.HybridContainerService/skus@2026-04-01-preview' = {
scope: resourceSymbolicName or scope
extendedLocation: {
name: 'string'
type: 'string'
}
name: 'default'
properties: {
values: [
{}
]
}
}
Property Values
Microsoft.HybridContainerService/skus
| Name | Description | Value |
|---|---|---|
| extendedLocation | Extended location pointing to the underlying infrastructure | ExtendedLocation |
| name | The resource name | 'default' (required) |
| properties | The resource-specific properties for this resource. | VmSkuProfileProperties |
| scope | Use when creating a resource at a scope that is different than the deployment scope. | Set this property to the symbolic name of a resource to apply the extension resource. |
ExtendedLocation
| Name | Description | Value |
|---|---|---|
| name | ARM Id of the extended location. | string |
| type | The extended location type. Allowed value: 'CustomLocation' | 'CustomLocation' |
VmSkuProfileProperties
| Name | Description | Value |
|---|---|---|
| values | List of supported VM SKUs. | VmSkuProperties[] |
VmSkuProperties
| Name | Description | Value |
|---|
ARM template resource definition
The skus resource type can be deployed with operations that target:
- Tenant - See tenant deployment commands* Management groups - See management group deployment commands* Subscription - See subscription deployment commands* 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.HybridContainerService/skus resource, add the following JSON to your template.
{
"type": "Microsoft.HybridContainerService/skus",
"apiVersion": "2026-04-01-preview",
"name": "string",
"extendedLocation": {
"name": "string",
"type": "string"
},
"properties": {
"values": [
{
}
]
}
}
Property Values
Microsoft.HybridContainerService/skus
| Name | Description | Value |
|---|---|---|
| apiVersion | The api version | '2026-04-01-preview' |
| extendedLocation | Extended location pointing to the underlying infrastructure | ExtendedLocation |
| name | The resource name | 'default' (required) |
| properties | The resource-specific properties for this resource. | VmSkuProfileProperties |
| type | The resource type | 'Microsoft.HybridContainerService/skus' |
ExtendedLocation
| Name | Description | Value |
|---|---|---|
| name | ARM Id of the extended location. | string |
| type | The extended location type. Allowed value: 'CustomLocation' | 'CustomLocation' |
VmSkuProfileProperties
| Name | Description | Value |
|---|---|---|
| values | List of supported VM SKUs. | VmSkuProperties[] |
VmSkuProperties
| Name | Description | Value |
|---|
Usage Examples
Terraform (AzAPI provider) resource definition
The skus resource type can be deployed with operations that target:
- Tenant* Management groups* Subscription* Resource groups
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.HybridContainerService/skus resource, add the following Terraform to your template.
resource "azapi_resource" "symbolicname" {
type = "Microsoft.HybridContainerService/skus@2026-04-01-preview"
name = "string"
parent_id = "string"
body = {
extendedLocation = {
name = "string"
type = "string"
}
properties = {
values = [
{
}
]
}
}
}
Property Values
Microsoft.HybridContainerService/skus
| Name | Description | Value |
|---|---|---|
| extendedLocation | Extended location pointing to the underlying infrastructure | ExtendedLocation |
| name | The resource name | 'default' (required) |
| parent_id | The ID of the resource to apply this extension resource to. | string (required) |
| properties | The resource-specific properties for this resource. | VmSkuProfileProperties |
| type | The resource type | "Microsoft.HybridContainerService/skus@2026-04-01-preview" |
ExtendedLocation
| Name | Description | Value |
|---|---|---|
| name | ARM Id of the extended location. | string |
| type | The extended location type. Allowed value: 'CustomLocation' | 'CustomLocation' |
VmSkuProfileProperties
| Name | Description | Value |
|---|---|---|
| values | List of supported VM SKUs. | VmSkuProperties[] |
VmSkuProperties
| Name | Description | Value |
|---|