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 elasticSans 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.ElasticSan/elasticSans resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.ElasticSan/elasticSans@2025-09-01' = {
location: 'string'
name: 'string'
properties: {
autoScaleProperties: {
scaleUpProperties: {
autoScalePolicyEnforcement: 'string'
capacityUnitScaleUpLimitTiB: int
increaseCapacityUnitByTiB: int
unusedSizeTiB: int
}
}
availabilityZones: [
'string'
]
baseSizeTiB: int
extendedCapacitySizeTiB: int
publicNetworkAccess: 'string'
sku: {
name: 'string'
tier: 'string'
}
}
tags: {
{customized property}: 'string'
}
}
Property Values
Microsoft.ElasticSan/elasticSans
| Name | Description | Value |
|---|---|---|
| location | The geo-location where the resource lives | string (required) |
| name | The resource name | string Constraints: Min length = 3 Max length = 24 Pattern = ^[A-Za-z0-9]+((-|_)[a-z0-9A-Z]+)*$ (required) |
| properties | Properties of ElasticSan. | ElasticSanProperties (required) |
| tags | Resource tags | Dictionary of tag names and values. See Tags in templates |
AutoScaleProperties
| Name | Description | Value |
|---|---|---|
| scaleUpProperties | Scale up settings on Elastic San Appliance. | ScaleUpProperties |
ElasticSanProperties
| Name | Description | Value |
|---|---|---|
| autoScaleProperties | Auto Scale Properties for Elastic San Appliance. | AutoScaleProperties |
| availabilityZones | Logical zone for Elastic San resource; example: ["1"]. | string[] |
| baseSizeTiB | Base size of the Elastic San appliance in TiB. | int (required) |
| extendedCapacitySizeTiB | Extended size of the Elastic San appliance in TiB. | int (required) |
| publicNetworkAccess | Allow or disallow public network access to ElasticSan. Value is optional but if passed in, must be 'Enabled' or 'Disabled'. | 'Disabled' 'Enabled' |
| sku | resource sku | Sku (required) |
ScaleUpProperties
| Name | Description | Value |
|---|---|---|
| autoScalePolicyEnforcement | Enable or Disable scale up setting on Elastic San Appliance. | 'Disabled' 'Enabled' 'None' |
| capacityUnitScaleUpLimitTiB | Maximum scale up size on Elastic San appliance in TiB. | int |
| increaseCapacityUnitByTiB | Unit to increase Capacity Unit on Elastic San appliance in TiB. | int |
| unusedSizeTiB | Unused size on Elastic San appliance in TiB. | int |
Sku
| Name | Description | Value |
|---|---|---|
| name | The sku name. | 'Premium_LRS' 'Premium_ZRS' (required) |
| tier | The sku tier. | 'Premium' |
TrackedResourceTags
| Name | Description | Value |
|---|
Usage Examples
Bicep Samples
A basic example of deploying Azure Elastic SAN (Storage Area Network) resource.
param resourceName string = 'acctest0001'
param location string = 'westus'
resource elasticSan 'Microsoft.ElasticSan/elasticSans@2023-01-01' = {
name: resourceName
location: location
properties: {
baseSizeTiB: 1
extendedCapacitySizeTiB: 0
sku: {
name: 'Premium_LRS'
tier: 'Premium'
}
}
}
Azure Verified Modules
The following Azure Verified Modules can be used to deploy this resource type.
| Module | Description |
|---|---|
| Elastic SAN | AVM Resource Module for Elastic SAN |
ARM template resource definition
The elasticSans 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.ElasticSan/elasticSans resource, add the following JSON to your template.
{
"type": "Microsoft.ElasticSan/elasticSans",
"apiVersion": "2025-09-01",
"name": "string",
"location": "string",
"properties": {
"autoScaleProperties": {
"scaleUpProperties": {
"autoScalePolicyEnforcement": "string",
"capacityUnitScaleUpLimitTiB": "int",
"increaseCapacityUnitByTiB": "int",
"unusedSizeTiB": "int"
}
},
"availabilityZones": [ "string" ],
"baseSizeTiB": "int",
"extendedCapacitySizeTiB": "int",
"publicNetworkAccess": "string",
"sku": {
"name": "string",
"tier": "string"
}
},
"tags": {
"{customized property}": "string"
}
}
Property Values
Microsoft.ElasticSan/elasticSans
| Name | Description | Value |
|---|---|---|
| apiVersion | The api version | '2025-09-01' |
| location | The geo-location where the resource lives | string (required) |
| name | The resource name | string Constraints: Min length = 3 Max length = 24 Pattern = ^[A-Za-z0-9]+((-|_)[a-z0-9A-Z]+)*$ (required) |
| properties | Properties of ElasticSan. | ElasticSanProperties (required) |
| tags | Resource tags | Dictionary of tag names and values. See Tags in templates |
| type | The resource type | 'Microsoft.ElasticSan/elasticSans' |
AutoScaleProperties
| Name | Description | Value |
|---|---|---|
| scaleUpProperties | Scale up settings on Elastic San Appliance. | ScaleUpProperties |
ElasticSanProperties
| Name | Description | Value |
|---|---|---|
| autoScaleProperties | Auto Scale Properties for Elastic San Appliance. | AutoScaleProperties |
| availabilityZones | Logical zone for Elastic San resource; example: ["1"]. | string[] |
| baseSizeTiB | Base size of the Elastic San appliance in TiB. | int (required) |
| extendedCapacitySizeTiB | Extended size of the Elastic San appliance in TiB. | int (required) |
| publicNetworkAccess | Allow or disallow public network access to ElasticSan. Value is optional but if passed in, must be 'Enabled' or 'Disabled'. | 'Disabled' 'Enabled' |
| sku | resource sku | Sku (required) |
ScaleUpProperties
| Name | Description | Value |
|---|---|---|
| autoScalePolicyEnforcement | Enable or Disable scale up setting on Elastic San Appliance. | 'Disabled' 'Enabled' 'None' |
| capacityUnitScaleUpLimitTiB | Maximum scale up size on Elastic San appliance in TiB. | int |
| increaseCapacityUnitByTiB | Unit to increase Capacity Unit on Elastic San appliance in TiB. | int |
| unusedSizeTiB | Unused size on Elastic San appliance in TiB. | int |
Sku
| Name | Description | Value |
|---|---|---|
| name | The sku name. | 'Premium_LRS' 'Premium_ZRS' (required) |
| tier | The sku tier. | 'Premium' |
TrackedResourceTags
| Name | Description | Value |
|---|
Usage Examples
Terraform (AzAPI provider) resource definition
The elasticSans 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.ElasticSan/elasticSans resource, add the following Terraform to your template.
resource "azapi_resource" "symbolicname" {
type = "Microsoft.ElasticSan/elasticSans@2025-09-01"
name = "string"
parent_id = "string"
location = "string"
tags = {
{customized property} = "string"
}
body = {
properties = {
autoScaleProperties = {
scaleUpProperties = {
autoScalePolicyEnforcement = "string"
capacityUnitScaleUpLimitTiB = int
increaseCapacityUnitByTiB = int
unusedSizeTiB = int
}
}
availabilityZones = [
"string"
]
baseSizeTiB = int
extendedCapacitySizeTiB = int
publicNetworkAccess = "string"
sku = {
name = "string"
tier = "string"
}
}
}
}
Property Values
Microsoft.ElasticSan/elasticSans
| Name | Description | Value |
|---|---|---|
| location | The geo-location where the resource lives | string (required) |
| name | The resource name | string Constraints: Min length = 3 Max length = 24 Pattern = ^[A-Za-z0-9]+((-|_)[a-z0-9A-Z]+)*$ (required) |
| properties | Properties of ElasticSan. | ElasticSanProperties (required) |
| tags | Resource tags | Dictionary of tag names and values. |
| type | The resource type | "Microsoft.ElasticSan/elasticSans@2025-09-01" |
AutoScaleProperties
| Name | Description | Value |
|---|---|---|
| scaleUpProperties | Scale up settings on Elastic San Appliance. | ScaleUpProperties |
ElasticSanProperties
| Name | Description | Value |
|---|---|---|
| autoScaleProperties | Auto Scale Properties for Elastic San Appliance. | AutoScaleProperties |
| availabilityZones | Logical zone for Elastic San resource; example: ["1"]. | string[] |
| baseSizeTiB | Base size of the Elastic San appliance in TiB. | int (required) |
| extendedCapacitySizeTiB | Extended size of the Elastic San appliance in TiB. | int (required) |
| publicNetworkAccess | Allow or disallow public network access to ElasticSan. Value is optional but if passed in, must be 'Enabled' or 'Disabled'. | 'Disabled' 'Enabled' |
| sku | resource sku | Sku (required) |
ScaleUpProperties
| Name | Description | Value |
|---|---|---|
| autoScalePolicyEnforcement | Enable or Disable scale up setting on Elastic San Appliance. | 'Disabled' 'Enabled' 'None' |
| capacityUnitScaleUpLimitTiB | Maximum scale up size on Elastic San appliance in TiB. | int |
| increaseCapacityUnitByTiB | Unit to increase Capacity Unit on Elastic San appliance in TiB. | int |
| unusedSizeTiB | Unused size on Elastic San appliance in TiB. | int |
Sku
| Name | Description | Value |
|---|---|---|
| name | The sku name. | 'Premium_LRS' 'Premium_ZRS' (required) |
| tier | The sku tier. | 'Premium' |
TrackedResourceTags
| Name | Description | Value |
|---|
Usage Examples
Terraform Samples
A basic example of deploying Azure Elastic SAN (Storage Area Network) resource.
terraform {
required_providers {
azapi = {
source = "Azure/azapi"
}
}
}
provider "azapi" {
skip_provider_registration = false
}
variable "resource_name" {
type = string
default = "acctest0001"
}
variable "location" {
type = string
default = "westus"
}
resource "azapi_resource" "resourceGroup" {
type = "Microsoft.Resources/resourceGroups@2020-06-01"
name = var.resource_name
location = var.location
}
resource "azapi_resource" "elasticSan" {
type = "Microsoft.ElasticSan/elasticSans@2023-01-01"
parent_id = azapi_resource.resourceGroup.id
name = var.resource_name
location = var.location
body = {
properties = {
baseSizeTiB = 1
extendedCapacitySizeTiB = 0
sku = {
name = "Premium_LRS"
tier = "Premium"
}
}
}
}